first commit
This commit is contained in:
17
.vscode/ftp-kr.json
vendored
Normal file
17
.vscode/ftp-kr.json
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"host": "s165.cyber-folks.pl",
|
||||
"username": "garbary",
|
||||
"password": "GTdyerhxus649gv0:80dnsd7",
|
||||
"remotePath": "/domains/szkoleniauryzaj.pl/public_html/",
|
||||
"protocol": "ftp",
|
||||
"port": 0,
|
||||
"fileNameEncoding": "utf8",
|
||||
"autoUpload": true,
|
||||
"autoDelete": false,
|
||||
"autoDownload": false,
|
||||
"ignoreRemoteModification": true,
|
||||
"ignore": [
|
||||
".git",
|
||||
"/.vscode"
|
||||
]
|
||||
}
|
||||
6340
.vscode/ftp-kr.sync.cache.json
vendored
Normal file
6340
.vscode/ftp-kr.sync.cache.json
vendored
Normal file
File diff suppressed because it is too large
Load Diff
14
.vscode/settings.json
vendored
Normal file
14
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"liveSassCompile.settings.formats": [
|
||||
{
|
||||
"format": "compressed",
|
||||
"extensionName": ".css",
|
||||
"savePath": "",
|
||||
"savePathSegmentKeys": null,
|
||||
"savePathReplaceSegmentsWith": null
|
||||
}
|
||||
],
|
||||
"liveSassCompile.settings.generateMap": true,
|
||||
"liveSassCompile.settings.autoprefix": "defaults",
|
||||
"liveSassCompile.settings.watchOnLaunch": true
|
||||
}
|
||||
12
.vscode/sftp.json
vendored
Normal file
12
.vscode/sftp.json
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "s165.cyber-folks.pl",
|
||||
"host": "s165.cyber-folks.pl",
|
||||
"protocol": "ftp",
|
||||
"port": 21,
|
||||
"username": "garbary",
|
||||
"password": "GTdyerhxus649gv0:80dnsd7",
|
||||
"remotePath": "/domains/szkoleniauryzaj.pl/public_html/",
|
||||
"uploadOnSave": false,
|
||||
"useTempFile": false,
|
||||
"openSsh": false
|
||||
}
|
||||
44
cron-products.php
Normal file
44
cron-products.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
require( dirname( __FILE__ ) . '/wp-load.php' );
|
||||
|
||||
$current_date = date('Y-m-d');
|
||||
|
||||
$args = array(
|
||||
'post_type' => 'product',
|
||||
'posts_per_page' => -1,
|
||||
);
|
||||
$products = new WP_Query( $args );
|
||||
|
||||
if ( $products->have_posts() ) {
|
||||
|
||||
echo 'Data serwera: ' . $current_date . '<br /><br /><br />';
|
||||
|
||||
while ( $products->have_posts() ) {
|
||||
$products->the_post();
|
||||
$product_id = get_the_ID();
|
||||
$product_title = get_the_title( $product_id );
|
||||
|
||||
$acf_field_value = get_field( 'end_date_of_the_offer', $product_id );
|
||||
$acf_date_object = DateTime::createFromFormat('Y-m-d', $acf_field_value);
|
||||
|
||||
if ($acf_date_object !== false) {
|
||||
$acf_field_value = $acf_date_object->format('Y-m-d');
|
||||
|
||||
echo 'Product ID: ' . $product_id . '<br/>';
|
||||
echo 'Product Title: ' . $product_title . '<br/>';
|
||||
echo 'Końcowa data oferty: ' . $acf_field_value . '<br />';
|
||||
echo '-----------------------------------------------------<br/>';
|
||||
|
||||
if($acf_field_value && $acf_field_value < $current_date) {
|
||||
wp_update_post(array(
|
||||
'ID' => $product_id,
|
||||
'post_status' => 'draft',
|
||||
));
|
||||
delete_field('end_date_of_the_offer', $product_id);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
wp_reset_postdata();
|
||||
}
|
||||
?>
|
||||
7
wp-content/ai1wm-backups/.htaccess
Normal file
7
wp-content/ai1wm-backups/.htaccess
Normal file
@@ -0,0 +1,7 @@
|
||||
<IfModule mod_mime.c>
|
||||
AddType application/octet-stream .wpress
|
||||
</IfModule>
|
||||
<IfModule mod_dir.c>
|
||||
DirectoryIndex index.php
|
||||
</IfModule>
|
||||
Options -Indexes
|
||||
1
wp-content/ai1wm-backups/index.php
Normal file
1
wp-content/ai1wm-backups/index.php
Normal file
@@ -0,0 +1 @@
|
||||
<?php // silence is golden
|
||||
13
wp-content/ai1wm-backups/web.config
Normal file
13
wp-content/ai1wm-backups/web.config
Normal file
@@ -0,0 +1,13 @@
|
||||
<configuration>
|
||||
<system.webServer>
|
||||
<staticContent>
|
||||
<mimeMap fileExtension=".wpress" mimeType="application/octet-stream" />
|
||||
</staticContent>
|
||||
<defaultDocument>
|
||||
<files>
|
||||
<add value="index.php" />
|
||||
</files>
|
||||
</defaultDocument>
|
||||
<directoryBrowse enabled="false" />
|
||||
</system.webServer>
|
||||
</configuration>
|
||||
2
wp-content/index.php
Normal file
2
wp-content/index.php
Normal file
@@ -0,0 +1,2 @@
|
||||
<?php
|
||||
// Silence is golden.
|
||||
BIN
wp-content/languages/admin-network-pl_PL.mo
Normal file
BIN
wp-content/languages/admin-network-pl_PL.mo
Normal file
Binary file not shown.
1438
wp-content/languages/admin-network-pl_PL.po
Normal file
1438
wp-content/languages/admin-network-pl_PL.po
Normal file
File diff suppressed because it is too large
Load Diff
BIN
wp-content/languages/admin-pl_PL.mo
Normal file
BIN
wp-content/languages/admin-pl_PL.mo
Normal file
Binary file not shown.
15564
wp-content/languages/admin-pl_PL.po
Normal file
15564
wp-content/languages/admin-pl_PL.po
Normal file
File diff suppressed because it is too large
Load Diff
BIN
wp-content/languages/continents-cities-pl_PL.mo
Normal file
BIN
wp-content/languages/continents-cities-pl_PL.mo
Normal file
Binary file not shown.
2116
wp-content/languages/continents-cities-pl_PL.po
Normal file
2116
wp-content/languages/continents-cities-pl_PL.po
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"The suggested policy text has been copied to your clipboard.":["Sugerowany tekst polityki prywatno\u015bci zosta\u0142 skopiowany do schowka."],"An error occurred while attempting to find and erase personal data.":["Wyst\u0105pi\u0142 b\u0142\u0105d podczas pr\u00f3by znalezienia i usuni\u0119cia danych osobistych."],"Personal data was found for this user but some of the personal data found was not erased.":["Znaleziono dane osobiste u\u017cytkownika, ale cz\u0119\u015b\u0107 z nich nie zosta\u0142a usuni\u0119ta."],"All of the personal data found for this user was erased.":["Wszystkie dane osobiste u\u017cytkownika zosta\u0142y usuni\u0119te."],"Personal data was found for this user but was not erased.":["Znaleziono dane osobiste u\u017cytkownika, ale nie zosta\u0142y usuni\u0119te."],"No personal data was found for this user.":["Nie znaleziono danych osobistych dla wybranego u\u017cytkownika."],"An error occurred while attempting to export personal data.":["Wyst\u0105pi\u0142 b\u0142\u0105d podczas eksportowania danych osobistych."],"No personal data export file was generated.":["Nie wygenerowano pliku eksportu danych osobistych."],"This user’s personal data export file was downloaded.":["Plik eksportu danych osobistych wybranego u\u017cytkownika zosta\u0142 pobrany."],"This user’s personal data export link was sent.":["Odno\u015bnik do eksportu danych osobistych wybranego u\u017cytkownika zosta\u0142 wys\u0142any."]}},"comment":{"reference":"wp-admin\/js\/privacy-tools.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Disable tips":["Wy\u0142\u0105cz porady"],"See next tip":["Zobacz nast\u0119pn\u0105 porad\u0119"],"Editor tips":["Podpowiedzi"],"Got it":["Rozumiem"]}},"comment":{"reference":"wp-includes\/js\/dist\/nux.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"%1$s is deprecated since version %2$s! Use %3$s instead. Please consider writing more inclusive code.":["Funkcja %1$s jest przestarza\u0142a od wersji %2$s! U\u017cyj zamiast tego %3$s. Pomy\u015bl o pisaniu bardziej sp\u00f3jnego kodu."]}},"comment":{"reference":"wp-admin\/js\/password-strength-meter.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"%s applied.":["Zastosowano %s."],"%s removed.":["Usuni\u0119to: %s."]}},"comment":{"reference":"wp-includes\/js\/dist\/rich-text.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Create Reusable block":["Utw\u00f3rz blok wielokrotnego u\u017cycia"],"Add to Reusable blocks":["Dodaj do blok\u00f3w wielokrotnego u\u017cycia"],"Reusable block created.":["Utworzono blok wielokrotnego u\u017cycia."],"Untitled Reusable block":["Blok wielokrotnego u\u017cycia bez tytu\u0142u"],"Convert to regular blocks":["Przekszta\u0142\u0107 na zwyk\u0142e bloki"],"Manage Reusable blocks":["Zarz\u0105dzaj blokami wielokrotnego u\u017cycia"],"Name":["Nazwa"],"Save":["Zapisz"],"Cancel":["Anuluj"],"Close":["Zamknij"]}},"comment":{"reference":"wp-includes\/js\/dist\/reusable-blocks.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"%s Block":["Blok %s"],"%1$s Block. %2$s":["Blok %1$s. %2$s"],"%1$s Block. Column %2$d":["Blok %1$s. Kolumna %2$d"],"%1$s Block. Column %2$d. %3$s":["Blok %1$s. Kolumna %2$d. %3$s"],"%1$s Block. Row %2$d":["Blok: %1$s. Wiersz: %2$d"],"%1$s Block. Row %2$d. %3$s":["Blok %1$s. Wiersz %2$d. %3$s"],"Embeds":["Osadzone tre\u015bci"],"Design":["Wygl\u0105d"],"Reusable blocks":["Bloki wielokrotnego u\u017cycia"],"Text":["Tekst"],"Theme":["Motyw"],"Media":["Media"],"Widgets":["Wid\u017cety"]}},"comment":{"reference":"wp-includes\/js\/dist\/blocks.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"You are probably offline.":["Prawdopodobnie jeste\u015b offline."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Nie uda\u0142o si\u0119 przes\u0142anie multimedi\u00f3w. Je\u015bli jest to zdj\u0119cie lub du\u017cy obrazek, prosz\u0119 je zmniejszy\u0107 i spr\u00f3bowa\u0107 ponownie."],"An unknown error occurred.":["Wyst\u0105pi\u0142 nieznany b\u0142\u0105d."],"The response is not a valid JSON response.":["Odpowied\u017a nie jest prawid\u0142ow\u0105 odpowiedzi\u0105 JSON."]}},"comment":{"reference":"wp-includes\/js\/dist\/api-fetch.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Submitted on:":["Wys\u0142any:"],"%1$s %2$s, %3$s at %4$s:%5$s":["%3$s-%1$s-%2$s %4$s:%5$s"]}},"comment":{"reference":"wp-admin\/js\/comment.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Could not load the preview image.":["Nie uda\u0142o si\u0119 za\u0142adowa\u0107 podgl\u0105du obrazka."],"Could not load the preview image. Please reload the page and try again.":["Nie mo\u017cna wczyta\u0107 podgl\u0105du obrazu. Od\u015bwie\u017c stron\u0119 i spr\u00f3buj ponownie."]}},"comment":{"reference":"wp-admin\/js\/image-edit.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Reusable block imported successfully!":["Blok wielokrotnego u\u017cycia zosta\u0142 zaimportowany!"],"Import from JSON":["Zaimportuj z pliku JSON"],"button label\u0004Import":["Import"],"Unknown error":["Nieznany b\u0142\u0105d"],"Invalid Reusable block JSON file":["Nieprawid\u0142owy plik JSON bloku wielokrotnego u\u017cycia"],"Invalid JSON file":["Niepoprawny plik JSON"],"File":["Plik"]}},"comment":{"reference":"wp-includes\/js\/dist\/list-reusable-blocks.js"}}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Annotation":["Adnotacja"]}},"comment":{"reference":"wp-includes\/js\/dist\/annotations.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Notifications":["Powiadomienia"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Block Settings":["Ustawienia bloku"],"Save your changes.":["Zapisz zmiany."],"Redo your last undo.":["Przywr\u00f3\u0107 cofni\u0119te zmiany."],"Undo your last changes.":["Cofnij ostatnie zmiany."],"Here's a detailed guide.":["Szczeg\u00f3\u0142owy przewodnik."],"https:\/\/wordpress.org\/support\/article\/wordpress-editor\/":["https:\/\/wordpress.org\/support\/article\/wordpress-editor\/"],"New to the block editor?":["Edytor blokowy to dla ciebie co\u015b nowego?"],"Get the Classic Widgets plugin.":["Pobierz wtyczk\u0119 Klasyczne wid\u017cety."],"https:\/\/wordpress.org\/plugins\/classic-widgets\/":["https:\/\/pl.wordpress.org\/plugins\/classic-editor\/"],"Want to stick with the old widgets?":["Wolisz utkn\u0105\u0107 z wid\u017cetami starego typu?"],"Got it":["Rozumiem"],"You can now add any block to your site\u2019s widget areas. Don\u2019t worry, all of your favorite widgets still work flawlessly.":["Mo\u017cna doda\u0107 dowolny blok do obszar\u00f3w wid\u017cet\u00f3w swojej witryny. Prosz\u0119 si\u0119 nie martwi\u0107, wszystkie ulubione wid\u017cety nadal dzia\u0142aj\u0105 jak trzeba."],"Your theme provides different \u201cblock\u201d areas for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site.":["Motyw zapewnia r\u00f3\u017cne obszary \u201eblokowe\u201d, w kt\u00f3rych mo\u017cna dodawa\u0107 i edytowa\u0107 elementy. Prosz\u0119 spr\u00f3bowa\u0107 doda\u0107 pasek wyszukiwania, ikony spo\u0142eczno\u015bciowe lub inne rodzaje blok\u00f3w i zobaczy\u0107, jak b\u0119d\u0105 wygl\u0105da\u0107 w witrynie."],"Welcome to block Widgets":["Witamy w wid\u017cetach blokowych"],"Document tools":["Narz\u0119dzia dokumentu"],"Contain text cursor inside block deactivated":["Zawiera kursor wewn\u0105trz bloku po wy\u0142\u0105czeniu"],"Contain text cursor inside block activated":["Zawiera kursor wewn\u0105trz bloku po w\u0142\u0105czeniu"],"Aids screen readers by stopping text caret from leaving blocks.":["Wspomaga czytniki ekranu, zatrzymuj\u0105c kursor przed opuszczaniem blok\u00f3w."],"Contain text cursor inside block":["Umie\u015b\u0107 kursor tekstowy wewn\u0105trz bloku"],"Preferences":["Preferencje"],"https:\/\/wordpress.org\/support\/article\/block-based-widgets-editor\/":["https:\/\/wordpress.org\/support\/article\/block-based-widgets-editor\/"],"Welcome Guide":["Poradnik powitalny"],"Top toolbar deactivated":["G\u00f3rny pasek narz\u0119dzi zosta\u0142 wy\u0142\u0105czony"],"Top toolbar activated":["G\u00f3rny pasek narz\u0119dzi zosta\u0142 w\u0142\u0105czony"],"Access all block and document tools in a single place":["Dost\u0119p do wszystkich narz\u0119dzi blokowych i dokument\u00f3w w jednym miejscu"],"Top toolbar":["G\u00f3rny pasek narz\u0119dzi"],"noun\u0004View":["Zobacz"],"Text formatting":["Formatowanie tekstu"],"Forward-slash":["Uko\u015bnik"],"Change the block type after adding a new paragraph.":["Zmie\u0144 rodzaj bloku po dodaniu nowego akapitu."],"Block shortcuts":["Skr\u00f3ty blok\u00f3w"],"Selection shortcuts":["Skr\u00f3ty zaznaczania"],"Global shortcuts":["Globalne skr\u00f3ty"],"Keyboard shortcuts":["Skr\u00f3ty klawiaturowe"],"Display these keyboard shortcuts.":["Wy\u015bwietl skr\u00f3ty klawiaturowe."],"Underline the selected text.":["Podkre\u015bl zaznaczony tekst."],"Remove a link.":["Usu\u0144 odno\u015bnik."],"Convert the selected text into a link.":["Przekszta\u0142\u0107 zaznaczony tekst w odno\u015bnik."],"Make the selected text italic.":["Dodaj kursyw\u0119 dla zaznaczonego tekstu."],"Make the selected text bold.":["Pogrub zaznaczony tekst."],"Close inserter":["Zamknij wybierak"],"Show more settings":["Poka\u017c dodatkowe ustawienia"],"The editor has encountered an unexpected error.":["Edytor natrafi\u0142 na nieoczekiwany b\u0142\u0105d."],"Copy Error":["Skopiuj komunikat b\u0142\u0119du"],"Tools":["Narz\u0119dzia"],"Options":["Ustawienia"],"Add a block":["Dodaj blok"],"Generic label for block inserter button\u0004Add block":["Dodaj blok"],"Redo":["Pon\u00f3w"],"Undo":["Cofnij"],"Customizing":["Personalizowanie"],"Help":["Pomoc"],"Close":["Zamknij"],"(opens in a new tab)":["(otworzy si\u0119 w nowej karcie)"],"Widgets":["Wid\u017cety"]}},"comment":{"reference":"wp-includes\/js\/dist\/customize-widgets.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Global Styles":["Style og\u00f3lne"],"Menu Item":["Element menu"],"Widget types":["Typy wid\u017cet\u00f3w"],"Widget areas":["Obszary wid\u017cet\u00f3w"],"Post Type":["Typ tre\u015bci"],"Site":["Witryna"],"Base":["Podstawa"],"Taxonomy":["Taksonomia"],"Comment":["Komentarz"],"User":["U\u017cytkownik"],"Menu Location":["Po\u0142o\u017cenie menu"],"Site Title":["Nazwa witryny"],"(no title)":["(brak tytu\u0142u)"],"Media":["Media"],"Widgets":["Wid\u017cety"],"Plugins":["Wtyczki"],"Themes":["Motywy"],"Menu":["Menu"]}},"comment":{"reference":"wp-includes\/js\/dist\/core-data.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"All site health tests have finished running.":["Wszystkie testy stanu witryny zosta\u0142y uko\u0144czone."],"Please wait...":["Prosz\u0119 czeka\u0107\u2026"],"Unavailable":["Niedost\u0119pne"],"No details available":["Brak szczeg\u00f3\u0142\u00f3w"],"All site health tests have finished running. There are items that should be addressed, and the results are now available on the page.":["Wszystkie testy stanu witryny zosta\u0142y uko\u0144czone. S\u0105 elementy, kt\u00f3rymi nale\u017cy si\u0119 zaj\u0105\u0107, a wyniki s\u0105 teraz dost\u0119pne na stronie."],"Should be improved":["Powinien zosta\u0107 poprawiony"],"All site health tests have finished running. Your site is looking good, and the results are now available on the page.":["Wszystkie testy stanu witryny zosta\u0142y uko\u0144czone. Witryna wygl\u0105da dobrze, a rezultaty dost\u0119pne s\u0105 na stronie."],"Good":["Dobre"],"Site information has been copied to your clipboard.":["Informacje o witrynie skopiowano do schowka."],"%s item with no issues detected":["%s element bez problem\u00f3w","%s elementy bez problem\u00f3w","%s element\u00f3w bez problem\u00f3w"],"%s recommended improvement":["%s zalecane usprawnienie","%s zalecane usprawnienia","%s zalecanych usprawnie\u0144"],"%s critical issue":["%s b\u0142\u0105d krytyczny","%s b\u0142\u0119dy krytyczne","%s b\u0142\u0119d\u00f3w krytycznych"],"A test is unavailable":["Test nie jest dost\u0119pny."]}},"comment":{"reference":"wp-admin\/js\/site-health.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Use as featured image":["U\u017cyj jako obrazek wyr\u00f3\u017cniaj\u0105cy"],"Could not set that as the thumbnail image. Try a different attachment.":["Nie mo\u017cna by\u0142o ustawi\u0107 tego pliku jako miniatury. Prosz\u0119 spr\u00f3bowa\u0107 u\u017cy\u0107 innego za\u0142\u0105cznika."],"Saving\u2026":["Zapisywanie\u2026"],"Done":["Gotowe"]}},"comment":{"reference":"wp-admin\/js\/set-post-thumbnail.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Drag boxes here":["Przesu\u0144 tutaj sekcje"],"Add boxes from the Screen Options menu":["Dodaj pola z menu Opcje ekranu"],"The boxes order has been saved.":["Kolejno\u015b\u0107 p\u00f3l zosta\u0142a zapisana."],"The box is on the last position":["Pole jest na ostatniej pozycji"],"The box is on the first position":["Pole jest na pierwszej pozycji"]}},"comment":{"reference":"wp-admin\/js\/postbox.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Widget has been added to the selected sidebar":["Wid\u017cet zosta\u0142 dodany do wybranego panelu bocznego."],"Saved":["Zapisano"],"The changes you made will be lost if you navigate away from this page.":["Niezapisane zmiany zostan\u0105 utracone, je\u015bli opu\u015bcisz t\u0119 stron\u0119."],"Save":["Zapisz"]}},"comment":{"reference":"wp-admin\/js\/widgets.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"All application passwords revoked.":["Wszystkie has\u0142a aplikacji zosta\u0142y uniewa\u017cnione."],"Are you sure you want to revoke all passwords? This action cannot be undone.":["Na pewno chcesz usun\u0105\u0107 wszystkie has\u0142a? Ta akcja jest nieodwracalna."],"Application password revoked.":["Has\u0142o aplikacji zosta\u0142o uniewa\u017cnione."],"Are you sure you want to revoke this password? This action cannot be undone.":["Na pewno chcesz usun\u0105\u0107 has\u0142o? Ta akcja jest nieodwracalna."],"Dismiss this notice.":["Ukryj komunikat."]}},"comment":{"reference":"wp-admin\/js\/application-passwords.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Permalink saved":["Zapisano odno\u015bnik"],"Published on:":["Opublikowany w:"],"Publish on:":["Opublikuj w:"],"Schedule for:":["Zaplanuj na:"],"Saving Draft\u2026":["Zapisywanie szkicu..."],"No more comments found.":["Nie znaleziono wi\u0119cej komentarzy."],"Show more comments":["Poka\u017c wi\u0119cej komentarzy"],"%1$s %2$s, %3$s at %4$s:%5$s":["%3$s-%1$s-%2$s %4$s:%5$s"],"post action\/button label\u0004Schedule":["Zaplanuj"],"Public, Sticky":["Publiczne, przypi\u0119te"],"Privately Published":["Opublikowano prywatnie"],"Save as Pending":["Zapisz jako oczekuj\u0105cy"],"Could not set that as the thumbnail image. Try a different attachment.":["Nie mo\u017cna by\u0142o ustawi\u0107 tego pliku jako miniatury. Prosz\u0119 spr\u00f3bowa\u0107 u\u017cy\u0107 innego za\u0142\u0105cznika."],"Password Protected":["Zabezpieczono has\u0142em"],"Public":["Publiczne"],"URL Slug":["Uproszczona nazwa do adresu URL"],"The file URL has been copied to your clipboard":["Skopiowano do schowka adres URL pliku"],"Published":["Opublikowano"],"Private":["Prywatne"],"Update":["Aktualizuj"],"The changes you made will be lost if you navigate away from this page.":["Niezapisane zmiany zostan\u0105 utracone, je\u015bli opu\u015bcisz t\u0119 stron\u0119."],"Cancel":["Anuluj"],"OK":["OK"],"Save Draft":["Zapisz szkic"],"Publish":["Opublikuj"]}},"comment":{"reference":"wp-admin\/js\/post.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Are you sure you want to do this?\nThe comment changes you made will be lost.":["Czy na pewno chcesz to zrobi\u0107?\nZmiany wprowadzone w komentarzu zostan\u0105 utracone."],"Are you sure you want to edit this comment?\nThe changes you made will be lost.":["Czy na pewno chcesz edytowa\u0107 komentarz?\nWprowadzone zmiany zostan\u0105 utracone."],"Approve and Reply":["Zatwierd\u017a i odpowiedz"],"Comments (%s)":["Komentarze (%s)"],"Comments":["Komentarze"],"Reply":["Odpowiedz"]}},"comment":{"reference":"wp-admin\/js\/edit-comments.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Preference activated - %s":["W\u0142\u0105czono opcje - %s"],"Preference deactivated - %s":["Wy\u0142\u0105czono opcje - %s"]}},"comment":{"reference":"wp-includes\/js\/dist\/preferences.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Keyboard input":["Wprowad\u017a z klawiatury"],"Highlight":["Pod\u015bwietlenie"],"Create Page: <mark>%s<\/mark>":["Utw\u00f3rz stron\u0119: <mark>%s<\/mark>"],"Link edited.":["Odno\u015bnik by\u0142 edytowany."],"media":["media"],"photo":["zdj\u0119cie"],"Inline image":["Obrazek w tre\u015bci"],"Inline code":["Kod w tre\u015bci"],"Link removed.":["Odno\u015bnik zosta\u0142 usuni\u0119ty."],"Unlink":["Usu\u0144 odno\u015bnik"],"Text":["Tekst"],"Link inserted.":["Odno\u015bnik zosta\u0142 wstawiony."],"Warning: the link has been inserted but may have errors. Please test it.":["Uwaga: odno\u015bnik zosta\u0142 wstawiony, ale mo\u017ce zawiera\u0107 b\u0142\u0119dy. Prosimy go wypr\u00f3bowa\u0107."],"Width":["Szeroko\u015b\u0107"],"Link":["Odno\u015bnik"],"Italic":["Kursywa"],"Bold":["P\u00f3\u0142gruby"],"Superscript":["Indeks g\u00f3rny"],"Subscript":["Indeks dolny"],"Strikethrough":["Przekre\u015blenie"],"Underline":["Podkre\u015blenie"],"Apply":["Zastosuj"],"Background":["T\u0142o"]}},"comment":{"reference":"wp-includes\/js\/dist\/format-library.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Move to widget area":["Przejd\u017a do strefy wid\u017cet\u00f3w."],"Create a classic widget layout with a title that\u2019s styled by your theme for your widget areas.":["Utw\u00f3rz klasyczny uk\u0142ad wid\u017cet\u00f3w z tytu\u0142em sformatowanym wed\u0142ug motywu dla obszar\u00f3w wid\u017cet\u00f3w."],"Widget Group":["Grupa wid\u017cet\u00f3w"],"Widget is missing.":["Brak wid\u017cetu."],"Legacy Widget":["Wid\u017cet starego typu"],"No preview available.":["Brak podgl\u0105du."],"Legacy Widget Preview":["Podgl\u0105d wid\u017cet starego typu."],"The \"%s\" block was affected by errors and may not function properly. Check the developer tools for more details.":["Blok \u201e%s\u201d zawiera b\u0142\u0119dy i nie dzia\u0142a poprawnie. Wi\u0119cej informacji mo\u017cna znale\u017a\u0107 w narz\u0119dziach dla programist\u00f3w."],"Select widget":["Wybierz wid\u017cet"],"Select a legacy widget to display:":["Wybierz widget starego typu do wy\u015bwietlenia:"],"There are no widgets available.":["Nie ma dost\u0119pnych \u017cadnych widget\u00f3w."],"Convert to blocks":["Przekszta\u0142\u0107 na bloki"],"Move to":["Przenie\u015b do"],"Save":["Zapisz"],"Title":["Tytu\u0142"]}},"comment":{"reference":"wp-includes\/js\/dist\/widgets.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"The file URL has been copied to your clipboard":["Skopiowano do schowka adres URL pliku"],"An error has occurred. Please reload the page and try again.":["Wyst\u0105pi\u0142 b\u0142\u0105d. Prosz\u0119 od\u015bwie\u017cy\u0107 stron\u0119 i spr\u00f3bowa\u0107 ponownie."]}},"comment":{"reference":"wp-admin\/js\/media.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Plugin details":["Szczeg\u00f3\u0142y wtyczki"],"Plugin: %s":["Wtyczka: %s"]}},"comment":{"reference":"wp-admin\/js\/plugin-install.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Expand Main menu":["Rozwi\u0144 menu g\u0142\u00f3wne"],"You are about to permanently delete these items from your site.\nThis action cannot be undone.\n'Cancel' to stop, 'OK' to delete.":["Masz zamiar trwale usun\u0105\u0107 te elementy ze swojej witryny.\nTa czynno\u015b\u0107 nie mo\u017ce zosta\u0107 cofni\u0119ta.\nWybierz 'Anuluj' aby zatrzyma\u0107, 'OK' aby usun\u0105\u0107."],"%1$s is deprecated since version %2$s with no alternative available.":["Funkcja %1$s jest przestarza\u0142a od wersji %2$s i nie ma \u017cadnej alternatywy."],"%1$s is deprecated since version %2$s! Use %3$s instead.":["Funkcja %1$s jest przestarza\u0142a od wersji %2$s! W zamian prosz\u0119 u\u017cy\u0107 %3$s. "],"Dismiss this notice.":["Ukryj komunikat."],"Collapse Main menu":["Zwi\u0144 menu g\u0142\u00f3wne"]}},"comment":{"reference":"wp-admin\/js\/common.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Sorry, you are not allowed to do that.":["Brak uprawnie\u0144 \u017ceby to zrobi\u0107."],"Something went wrong.":["Co\u015b posz\u0142o nie tak."]}},"comment":{"reference":"wp-admin\/js\/tags.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Term selected.":["Termin zosta\u0142 wybrany."],"tag delimiter\u0004,":[","]}},"comment":{"reference":"wp-admin\/js\/tags-suggest.js"}}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"%s item selected":["Wybrano %s element","Wybrano %s elementy","Wybrano %s element\u00f3w"],"Showing %1$s of %2$s media items":["Wy\u015bwietlaj %1$s z %2$s element\u00f3w multimedialnych"],"Jump to first loaded item":["Przeskocz do pierwszego za\u0142adowanego elementu"],"Load more":["Za\u0142aduj wi\u0119cej"],"Number of media items displayed: %d. Scroll the page for more results.":["Liczba element\u00f3w multimedialnych: %d. Prosz\u0119 przewin\u0105\u0107 w d\u00f3\u0142, aby uzyska\u0107 wi\u0119cej wynik\u00f3w."],"Number of media items displayed: %d. Click load more for more results.":["Liczba wy\u015bwietlanych element\u00f3w multimedialnych: %d. Kliknij za\u0142aduj wi\u0119cej, aby uzyska\u0107 wi\u0119cej wynik\u00f3w."],"The file URL has been copied to your clipboard":["Skopiowano do schowka adres URL pliku"]}},"comment":{"reference":"wp-includes\/js\/media-views.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Your new password has not been saved.":["Nowe has\u0142o nie zosta\u0142o zapisane."],"Hide":["Ukryj"],"Show":["Poka\u017c"],"Show password":["Poka\u017c has\u0142o"],"Confirm use of weak password":["Potwierd\u017a u\u017cycie s\u0142abego has\u0142a"],"Hide password":["Ukryj has\u0142o"]}},"comment":{"reference":"wp-admin\/js\/user-profile.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"There is %s error which must be fixed before you can update this file.":["Wyst\u0105pi\u0142 %s b\u0142\u0105d, kt\u00f3ry musi zosta\u0107 naprawiony zanim b\u0119dzie mo\u017cna zaktualizowa\u0107 plik.","Wyst\u0105pi\u0142y %s b\u0142\u0119dy, kt\u00f3re musz\u0105 zosta\u0107 naprawione zanim b\u0119dzie mo\u017cna zaktualizowa\u0107 plik.","Wyst\u0105pi\u0142o %s b\u0142\u0119d\u00f3w, kt\u00f3re musz\u0105 zosta\u0107 naprawione zanim b\u0119dzie mo\u017cna zaktualizowa\u0107 plik."],"Something went wrong. Your change may not have been saved. Please try again. There is also a chance that you may need to manually fix and upload the file over FTP.":["Co\u015b posz\u0142o nie tak. Twoje zmiany nie zosta\u0142y zachowane. Prosz\u0119 spr\u00f3bowa\u0107 ponownie. Istnieje prawdopodobie\u0144stwo, \u017ce b\u0119dzie trzeba r\u0119cznie poprawi\u0107 i wgra\u0107 plik na serwer u\u017cywaj\u0105c FTP."],"The changes you made will be lost if you navigate away from this page.":["Niezapisane zmiany zostan\u0105 utracone, je\u015bli opu\u015bcisz t\u0119 stron\u0119."]}},"comment":{"reference":"wp-admin\/js\/theme-plugin-editor.js"}}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Your session has expired. You can log in again from this page or go to the login page.":["Twoja sesja wygas\u0142a. Mo\u017cesz zalogowa\u0107 si\u0119 ponownie na tej stronie lub przej\u015b\u0107 do ekranu logowania si\u0119."]}},"comment":{"reference":"wp-includes\/js\/wp-auth-check.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Keep as HTML":["Zachowaj jako HTML"],"Your site doesn\u2019t include support for the %s block. You can try installing the block, convert it to a Custom HTML block, or remove it entirely.":["Witryna nie obs\u0142uguje bloku %s. Mo\u017cna spr\u00f3bowa\u0107 go zainstalowa\u0107, przekszta\u0142ci\u0107 jego tre\u015b\u0107 we w\u0142asny blok HTML lub ca\u0142kowicie usun\u0105\u0107."],"Your site doesn\u2019t include support for the %s block. You can try installing the block or remove it entirely.":["Witryna nie obs\u0142uguje bloku %s. Mo\u017cna spr\u00f3bowa\u0107 go zainstalowa\u0107 lub ca\u0142kowicie usun\u0105\u0107!"],"Install %s":["Zainstaluj %s"],"The following block has been added to your site.":["Nast\u0119puj\u0105cy blok zosta\u0142 dodany do witryny.","",""],"Added: %d block":["Dodano: %d blok","",""],"By %s":["Autor: %s"],"Select a block to install and add it to your post.":["Wybierz bloki do zainstalowania i dodaj je do wpisu."],"Available to install":["Dost\u0119pne do zainstalowania"],"No results available from your installed blocks.":["Niczego nei znaleziono w zainstalowanych blokach."],"%d additional block is available to install.":["%d dodatkowy blok jest dost\u0119pny do zainstalowania.","",""],"Blocks available for install":["Bloki dost\u0119pne do zainstalowania"],"Install block":["Zainstaluj blok"],"%1$s <span>by %2$s<\/span>":["%1$s <span>autorstwa %2$s<\/span>"],"Installing\u2026":["Instalowanie..."],"Installed!":["Zainstalowano!"],"Install %1$s. %2$s stars with %3$s review.":["Zainstaluj %1$s. %2$s gwiazdek z %3$s recenzj\u0105.","",""],"Try reloading the page.":["Prosz\u0119 spr\u00f3bowa\u0107 od\u015bwie\u017cy\u0107 stron\u0119."],"%s out of 5 stars":["%s z 5 gwiazdek"],"Error installing block. You can reload the page and try again.":["B\u0142\u0105d instalacji bloku. Od\u015bwie\u017c stron\u0119 i spr\u00f3buj ponownie."],"This block is already installed. Try reloading the page.":["Blok ju\u017c jest zainstalowany. Prosz\u0119 od\u015bwie\u017cy\u0107 stron\u0119."],"An error occurred.":["Wyst\u0105pi\u0142 b\u0142\u0105d."],"Block %s installed and added.":["Blok %s zosta\u0142 zainstalowany i dodany."],"Error registering block. Try reloading the page.":["B\u0142\u0105d podczas rejestrowania bloku. Prosz\u0119 od\u015bwie\u017cy\u0107 stron\u0119."],"No results found.":["Brak wynik\u00f3w."]}},"comment":{"reference":"wp-includes\/js\/dist\/block-directory.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Error while saving the changes.":["Wyst\u0105pi\u0142 b\u0142\u0105d podczas zapisywania zmian."],"All selected items have been removed. Select new items to use Bulk Actions.":["Wszystkie wybrane pozycje zosta\u0142y usuni\u0119te. Wybierz nowe elementy, aby u\u017cy\u0107 dzia\u0142a\u0144 zbiorczych."],"Remove “%s” from Bulk Edit":["Usu\u0144 „%s” z edycji zbiorczej"],"Changes saved.":["Zmiany zosta\u0142y zapisane."],"Item removed.":["Element zosta\u0142 usuni\u0119ty."],"tag delimiter\u0004,":[","],"(no title)":["(brak tytu\u0142u)"]}},"comment":{"reference":"wp-admin\/js\/inline-edit-post.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Clear color":["Wyczy\u015b\u0107 kolor"],"Select default color":["Wybierz domy\u015blny kolor"],"Select Color":["Wybierz kolor"],"Color value":["Kolor"],"Clear":["Wyczy\u015b\u0107"],"Default":["Domy\u015blne"]}},"comment":{"reference":"wp-admin\/js\/color-picker.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Term added.":["Dodano termin."],"Term removed.":["Usuni\u0119to termin."],"Remove term:":["Usu\u0144 termin:"],"tag delimiter\u0004,":[","]}},"comment":{"reference":"wp-admin\/js\/tags-box.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Backtick":["Odwr\u00f3cony apostrof"],"Period":["Okres"],"Comma":["Przecinek"]}},"comment":{"reference":"wp-includes\/js\/dist\/keycodes.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"You are about to permanently delete this menu.\n'Cancel' to stop, 'OK' to delete.":["Zamierzasz usun\u0105\u0107 to menu na zawsze. \nKliknij 'Anuluj', aby anulowa\u0107 t\u0119 operacj\u0119, lub 'OK', aby usun\u0105\u0107 menu."],"The changes you made will be lost if you navigate away from this page.":["Niezapisane zmiany zostan\u0105 utracone, je\u015bli opu\u015bcisz t\u0119 stron\u0119."],"missing menu item navigation label\u0004(no label)":["(brak etykiety)"],"No results found.":["Brak wynik\u00f3w."]}},"comment":{"reference":"wp-admin\/js\/nav-menu.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Be sure to save this in a safe location. You will not be able to retrieve it.":["Upewnij si\u0119, \u017ce zapisujesz to w bezpiecznym miejscu. Nie b\u0119dziesz w stanie tego odzyska\u0107."],"Your new password for %s is:":["Nowe has\u0142o dla %s to:"]}},"comment":{"reference":"wp-admin\/js\/auth-app.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"text direction\u0004ltr":["ltr"]}},"comment":{"reference":"wp-includes\/js\/dist\/i18n.js"}}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Dismiss":["Odrzu\u0107"]}},"comment":{"reference":"wp-includes\/js\/wp-pointer.js"}}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Error while saving the changes.":["Wyst\u0105pi\u0142 b\u0142\u0105d podczas zapisywania zmian."],"Changes saved.":["Zmiany zosta\u0142y zapisane."]}},"comment":{"reference":"wp-admin\/js\/inline-edit-tax.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Error while uploading file %s to the media library.":["B\u0142\u0105d podczas wysy\u0142ania pliku %s do biblioteki medi\u00f3w."],"This file is empty.":["Plik jest pusty."],"This file exceeds the maximum upload size for this site.":["Rozmiar tego pliku przekracza maksymalny dozwolony rozmiar plik\u00f3w wysy\u0142anych na t\u0119 witryn\u0119."],"Sorry, this file type is not supported here.":["Pliki tego typu nie s\u0105 obs\u0142ugiwane."],"Select or Upload Media":["Wybierz lub prze\u015blij media"],"Sorry, you are not allowed to upload this file type.":["Brak uprawnienia do przesy\u0142ania takich plik\u00f3w."]}},"comment":{"reference":"wp-includes\/js\/dist\/media-utils.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Error loading block: %s":["B\u0142\u0105d \u0142adowania bloku: %s"],"Block rendered as empty.":["Blok wy\u015bwietlany jako pusty."]}},"comment":{"reference":"wp-includes\/js\/dist\/server-side-render.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-10-13 09:46:04+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Events widget offset prefix\u0004GMT":["GMT+1"],"Enter your closest city to find nearby events.":["Wpisz najbli\u017csze miasto, aby znale\u017a\u0107 bliskie wydarzenia."],"We couldn\u2019t locate %s. Please try another nearby city. For example: Kansas City; Springfield; Portland.":["Nie mo\u017cna zlokalizowa\u0107 %s. Prosz\u0119 wypr\u00f3bowa\u0107 inne, znajduj\u0105ce si\u0119 w pobli\u017cu miasto. Na przyk\u0142ad: Warszawa, Wroc\u0142aw, Olsztyn."],"City updated. Listing events near %s.":["Miasto zosta\u0142o zaktualizowane. Lista wydarze\u0144 w okolicy %s."],"Attend an upcoming event near you.":["We\u017a udzia\u0142 w nadchodz\u0105cym wydarzeniu w pobli\u017cu ciebie."],"An error occurred. Please try again.":["Wyst\u0105pi\u0142 b\u0142\u0105d. Prosz\u0119 spr\u00f3bowa\u0107 ponownie."],"%1$s %2$d \u2013 %3$s %4$d, %5$d":["%2$d %1$s \u2013 %4$d %3$s, %5$d"],"upcoming events year format\u0004Y":["Y"],"upcoming events day format\u0004j":["j"],"%1$s %2$d\u2013%3$d, %4$d":["%2$d\u2013%3$d %1$s, %4$d"],"upcoming events month format\u0004F":["F"],"l, M j, Y":["j.n.Y, l"]}},"comment":{"reference":"wp-admin\/js\/dashboard.js"}}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-09-28 06:05:43+0000","generator":"GlotPress\/4.0.0-alpha.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Could not set that as the thumbnail image. Try a different attachment.":["Nie mo\u017cna by\u0142o ustawi\u0107 tego pliku jako miniatury. Prosz\u0119 spr\u00f3bowa\u0107 u\u017cy\u0107 innego za\u0142\u0105cznika."]}},"comment":{"reference":"wp-includes\/js\/media-editor.js"}}
|
||||
File diff suppressed because one or more lines are too long
BIN
wp-content/languages/pl_PL.mo
Normal file
BIN
wp-content/languages/pl_PL.mo
Normal file
Binary file not shown.
16
wp-content/languages/pl_PL.php
Normal file
16
wp-content/languages/pl_PL.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
/* filters */
|
||||
add_filter( 'date_i18n', 'date_declension' );
|
||||
|
||||
/* functions */
|
||||
function date_declension( $date )
|
||||
{
|
||||
$month_names = array( '/Styczeń/', '/Luty/', '/Marzec/', '/Kwiecień/', '/Maj/', '/Czerwiec/', '/Lipiec/', '/Sierpień/', '/Wrzesień/', '/Październik/', '/Listopad/', '/Grudzień/' );
|
||||
$month_names_genitive = array( 'stycznia', 'lutego', 'marca', 'kwietnia', 'maja', 'czerwca', 'lipca', 'sierpnia', 'września', 'października', 'listopada', 'grudnia' );
|
||||
|
||||
/* "1 Styczeń..." -> "1 stycznia..." */
|
||||
$pattern = '/^\d{1,2}\ \w+/';
|
||||
if ( preg_match( $pattern, $date ) ) return preg_replace( $month_names, $month_names_genitive, $date );
|
||||
return $date;
|
||||
}
|
||||
?>
|
||||
19143
wp-content/languages/pl_PL.po
Normal file
19143
wp-content/languages/pl_PL.po
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2023-09-10 15:13:41+0000","generator":"GlotPress\/4.0.0-alpha.7","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Location not found: %s":["Nie znaleziono lokalizacji: %s"],"Null":["Pusty"],"Checked":["Zaznaczone"],"Edit field group":["Edytuj grup\u0119 p\u00f3l"],"Selection is less than":["Wyb\u00f3r jest mniejszy ni\u017c"],"Selection is greater than":["Wyb\u00f3r jest wi\u0119kszy ni\u017c"],"Value is less than":["Warto\u015b\u0107 jest mniejsza ni\u017c"],"Value is greater than":["Warto\u015b\u0107 jest wi\u0119ksza ni\u017c"],"Value contains":["Warto\u015b\u0107 zawiera"],"Value matches pattern":["Warto\u015b\u0107 musi pasowa\u0107 do wzoru"],"Value is not equal to":["Warto\u015b\u0107 nie jest r\u00f3wna"],"Value is equal to":["Warto\u015b\u0107 jest r\u00f3wna"],"Has no value":["Nie ma warto\u015bci"],"Has any value":["Ma dowoln\u0105 warto\u015b\u0107"],"%d fields require attention":["%d pola(-\u00f3l) wymaga uwagi"],"1 field requires attention":["1 pole wymaga uwagi"],"Validation failed":["Walidacja nie powiod\u0142a si\u0119"],"Validation successful":["Walidacja zako\u0144czona sukcesem"],"Restricted":["Ograniczone"],"Collapse Details":["Zwi\u0144 szczeg\u00f3\u0142y"],"Expand Details":["Rozwi\u0144 szczeg\u00f3\u0142y"],"Uploaded to this post":["Wgrane do wpisu"],"verb\u0004Update":["Aktualizuj"],"The changes you made will be lost if you navigate away from this page":["Wprowadzone przez Ciebie zmiany przepadn\u0105 je\u015bli przejdziesz do innej strony"],"Update File":["Aktualizuj plik"],"Edit File":["Edytuj plik"],"Select File":["Wybierz plik"],"verb\u0004Select":["Wybierz"],"No matches found":["Brak pasuj\u0105cych wynik\u00f3w"],"Loading":["Wczytywanie"],"Maximum values reached ( {max} values )":["Maksymalna liczba warto\u015bci zosta\u0142a przekroczona ( {max} warto\u015bci )"],"All images":["Wszystkie obrazki"],"Update Image":["Aktualizuj obrazek"],"Edit Image":["Edytuj obrazek"],"Select Image":["Wybierz obrazek"],"Sorry, this browser does not support geolocation":["Przepraszamy, ta przegl\u0105darka nie obs\u0142uguje geolokalizacji"]}},"comment":{"reference":"assets\/build\/js\/acf-input.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2023-09-10 15:13:41+0000","generator":"GlotPress\/4.0.0-alpha.7","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"This Field":["To pole"],"Type to search...":["Wpisz, aby wyszuka\u0107\u2026"],"PRO Only":["Tylko w PRO"],"Field moved to other group":["Pole zosta\u0142o przeniesione do innej grupy"],"Move field group to trash?":["Przenie\u015b\u0107 grup\u0119 p\u00f3l do kosza?"],"Show this field group if":["Poka\u017c t\u0119 grup\u0119 p\u00f3l je\u015bli"],"copy":["kopia"],"(this field)":["(to pole)"],"Move Custom Field":["Przenie\u015b pole"],"No toggle fields available":["Brak dost\u0119pnych p\u00f3l"],"This field cannot be moved until its changes have been saved":["To pole nie mo\u017ce zosta\u0107 przeniesione zanim zmiany nie zostan\u0105 zapisane"],"The string \"field_\" may not be used at the start of a field name":["Ci\u0105g znak\u00f3w \u201efield_\u201d nie mo\u017ce zosta\u0107 u\u017cyty na pocz\u0105tku nazwy pola"],"or":["lub"],"(no label)":["(brak etykiety)"]}},"comment":{"reference":"assets\/build\/js\/acf-field-group.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2023-09-10 15:13:41+0000","generator":"GlotPress\/4.0.0-alpha.7","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Category":["Kategoria"],"Tag":["Tag"],"Pages":["Strony"],"Field groups linked successfully.":["Grupy p\u00f3l zosta\u0142y powi\u0105zane."],"Posts":["Wpisy"],"Tags":["Tagi"],"Categories":["Kategorie"],"Page":["Strona"],"Post":["Wpis"],"Default":["Domy\u015blne"]}},"comment":{"reference":"assets\/build\/js\/acf-internal-post-type.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2023-09-10 15:13:41+0000","generator":"GlotPress\/4.0.0-alpha.7","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Close modal":["Zamknij okno"],"Cancel":["Anuluj"],"Are you sure?":["Czy na pewno?"],"Remove":["Usu\u0144"],"No":["Nie"],"Yes":["Tak"]}},"comment":{"reference":"assets\/build\/js\/acf.js"}}
|
||||
BIN
wp-content/languages/plugins/advanced-custom-fields-pl_PL.mo
Normal file
BIN
wp-content/languages/plugins/advanced-custom-fields-pl_PL.mo
Normal file
Binary file not shown.
5291
wp-content/languages/plugins/advanced-custom-fields-pl_PL.po
Normal file
5291
wp-content/languages/plugins/advanced-custom-fields-pl_PL.po
Normal file
File diff suppressed because it is too large
Load Diff
BIN
wp-content/languages/plugins/akismet-pl_PL.mo
Normal file
BIN
wp-content/languages/plugins/akismet-pl_PL.mo
Normal file
Binary file not shown.
968
wp-content/languages/plugins/akismet-pl_PL.po
Normal file
968
wp-content/languages/plugins/akismet-pl_PL.po
Normal file
@@ -0,0 +1,968 @@
|
||||
# Translation of Plugins - Akismet Spam Protection - Stable (latest release) in Polish
|
||||
# This file is distributed under the same license as the Plugins - Akismet Spam Protection - Stable (latest release) package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2022-08-24 07:26:03+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);\n"
|
||||
"X-Generator: GlotPress/4.0.0-alpha.1\n"
|
||||
"Language: pl\n"
|
||||
"Project-Id-Version: Plugins - Akismet Spam Protection - Stable (latest release)\n"
|
||||
|
||||
#: views/get.php:11
|
||||
msgid "(opens in a new tab)"
|
||||
msgstr "(otworzy się w nowej karcie)"
|
||||
|
||||
#. translators: The placeholder is the name of a subscription level, like
|
||||
#. "Plus" or "Enterprise" .
|
||||
#: views/notice.php:282
|
||||
msgid "Upgrade to %s"
|
||||
msgstr "Aktualizuj do %s"
|
||||
|
||||
#: views/notice.php:277
|
||||
msgid "Upgrade your Subscription Level"
|
||||
msgstr "Ulepsz swój poziom subskrybcji"
|
||||
|
||||
#: views/notice.php:238 views/notice.php:246 views/notice.php:254
|
||||
#: views/notice.php:263
|
||||
msgid "Learn more about usage limits."
|
||||
msgstr "Dowiedz się więcej o limitach używania."
|
||||
|
||||
#. translators: The first placeholder is a date, the second is a (formatted)
|
||||
#. number, the third is another formatted number.
|
||||
#: views/notice.php:230
|
||||
msgid "Since %1$s, your account made %2$s API calls, compared to your plan’s limit of %3$s."
|
||||
msgstr "Od %1$s twoje konto wykonało %2$s wywołań interfejsu API w porównaniu z limitem planu wynoszącym %3$s."
|
||||
|
||||
#: views/notice.php:260
|
||||
msgid "Your Akismet usage has been over your plan’s limit for three consecutive months. We have restricted your account for the rest of the month. Upgrade your plan so Akismet can continue blocking spam."
|
||||
msgstr "Wykorzystanie Akismet przekroczyło limit twojego planu przez trzy kolejne miesiące. Ograniczyliśmy twoje konto na resztę miesiąca. Uaktualnij swój plan, aby Akismet mógł nadal blokować spam."
|
||||
|
||||
#: views/notice.php:251
|
||||
msgid "Your Akismet usage is nearing your plan’s limit for the third consecutive month. We will restrict your account after you reach the limit. Upgrade your plan so Akismet can continue blocking spam."
|
||||
msgstr "Wykorzystanie Akismet zbliża się do limitu planu przez trzeci miesiąc z rzędu. Po osiągnięciu limitu ograniczymy twoje konto. Uaktualnij swój plan, aby Akismet mógł nadal blokować spam."
|
||||
|
||||
#: views/notice.php:243
|
||||
msgid "Your Akismet usage has been over your plan’s limit for two consecutive months. Next month, we will restrict your account after you reach the limit. Please consider upgrading your plan."
|
||||
msgstr "Wykorzystanie Akismet przekroczyło limit twojego planu przez dwa kolejne miesiące. W przyszłym miesiącu ograniczymy twoje konto po osiągnięciu limitu. Rozważ uaktualnienie swojego planu."
|
||||
|
||||
#: views/notice.php:217
|
||||
msgid "Your account has been restricted"
|
||||
msgstr "Twoje konto zostało ograniczone"
|
||||
|
||||
#: views/notice.php:213
|
||||
msgid "Your Akismet account usage is approaching your plan’s limit"
|
||||
msgstr "Wykorzystanie twojego konta Akismet zbliża się do limitu twojego planu"
|
||||
|
||||
#: views/notice.php:210
|
||||
msgid "Your Akismet account usage is over your plan’s limit"
|
||||
msgstr "Wykorzystanie twojego konta Akismet przekracza limit twojego planu"
|
||||
|
||||
#. translators: The placeholder is a URL.
|
||||
#: views/notice.php:128
|
||||
msgid "Please enter a new key or <a href=\"%s\" target=\"_blank\">contact Akismet support</a>."
|
||||
msgstr "Wprowadź nowy klucz lub <a href=\"%s\" target=\"_blank\">skontaktuj się z pomocą techniczną Akismet</a>."
|
||||
|
||||
#: views/notice.php:121
|
||||
msgid "Your API key is no longer valid."
|
||||
msgstr "Twój klucz API jest już nieważny."
|
||||
|
||||
#: views/stats.php:4
|
||||
msgid "Anti-Spam Settings"
|
||||
msgstr "Ustawienia antyspamowe"
|
||||
|
||||
#. translators: The placeholder is for showing how much of the process has
|
||||
#. completed, as a percent. e.g., "Checking for Spam (40%)"
|
||||
#: class.akismet-admin.php:416
|
||||
msgid "Checking for Spam (%1$s%)"
|
||||
msgstr "Sprawdzanie spamu (%1$s%)"
|
||||
|
||||
#: class.akismet-admin.php:703
|
||||
msgid "No comment history."
|
||||
msgstr "Brak historii komentarza."
|
||||
|
||||
#: class.akismet-admin.php:654
|
||||
msgid "Akismet was unable to recheck this comment."
|
||||
msgstr "Akismet nie mógł ponownie sprawdzić komentarza."
|
||||
|
||||
#: class.akismet-admin.php:646
|
||||
msgid "Akismet was unable to check this comment but will automatically retry later."
|
||||
msgstr "Akismet nie mógł ponownie sprawdzić komentarza, ale później zrobi to automatycznie."
|
||||
|
||||
#. translators: The placeholder is a WordPress PHP function name.
|
||||
#: class.akismet-admin.php:615
|
||||
msgid "Comment was caught by %s."
|
||||
msgstr "Komentarz został przechwycony przez %s."
|
||||
|
||||
#: class.akismet.php:639
|
||||
msgid "Akismet is not configured. Please enter an API key."
|
||||
msgstr "Akismet nie jest skonfigurowany. Proszę dodać klucz API."
|
||||
|
||||
#: views/enter.php:8
|
||||
msgid "Enter your API key"
|
||||
msgstr "Wprowadź klucz API"
|
||||
|
||||
#: views/connect-jp.php:66
|
||||
msgid "Set up a different account"
|
||||
msgstr "Skonfiguruj inne konto"
|
||||
|
||||
#: views/setup.php:2
|
||||
msgid "Set up your Akismet account to enable spam filtering on this site."
|
||||
msgstr "Skonfiguruj konto Akismet, żeby włączyć ochronę przed spamem na tej witrynie."
|
||||
|
||||
#: class.akismet-admin.php:1143
|
||||
msgid "Akismet could not recheck your comments for spam."
|
||||
msgstr "Akismet nie był w stanie przeanalizować komentarzy pod kątem spamu."
|
||||
|
||||
#: class.akismet-admin.php:437
|
||||
msgid "You don’t have permission to do that."
|
||||
msgstr "Nie posiadasz uprawnień do wykonania tej operacji."
|
||||
|
||||
#: class.akismet-cli.php:165
|
||||
msgid "Stats response could not be decoded."
|
||||
msgstr "Nie można oczytać odpowiedzi Stats."
|
||||
|
||||
#: class.akismet-cli.php:159
|
||||
msgid "Currently unable to fetch stats. Please try again."
|
||||
msgstr "Obecnie nie można pobrać statystyk. Spróbuj ponownie później."
|
||||
|
||||
#: class.akismet-cli.php:134
|
||||
msgid "API key must be set to fetch stats."
|
||||
msgstr "Klucz API musi być ustawiony, aby pobrać statystyki."
|
||||
|
||||
#: views/config.php:170
|
||||
msgid "To help your site with transparency under privacy laws like the GDPR, Akismet can display a notice to your users under your comment forms. This feature is disabled by default, however, you can turn it on above."
|
||||
msgstr "Aby pomóc witrynie w przejrzystości zgodnie z przepisami dotyczącymi ochrony prywatności takimi, jak RODO, Akismet może wyświetlać powiadomienie pod formularzem komentarza. Funkcja jest domyślnie wyłączona, ale można ją włączyć."
|
||||
|
||||
#: views/config.php:168
|
||||
msgid "Do not display privacy notice."
|
||||
msgstr "Nie wyświetlaj informacji o prywatności."
|
||||
|
||||
#: views/config.php:167
|
||||
msgid "Display a privacy notice under your comment forms."
|
||||
msgstr "Wyświetl pod formularzami komentarzy informacje o prywatności."
|
||||
|
||||
#: views/config.php:166
|
||||
msgid "Akismet privacy notice"
|
||||
msgstr "Polityka prywatności Akismeta"
|
||||
|
||||
#: views/config.php:163
|
||||
msgid "Privacy"
|
||||
msgstr "Prywatność"
|
||||
|
||||
#: class.akismet.php:1745
|
||||
msgid "This site uses Akismet to reduce spam. <a href=\"%s\" target=\"_blank\" rel=\"nofollow noopener\">Learn how your comment data is processed</a>."
|
||||
msgstr "Witryna wykorzystuje Akismet, aby ograniczyć spam. <a href=\"%s\" target=\"_blank\" rel=\"nofollow noopener\">Dowiedz się więcej jak przetwarzane są dane komentarzy</a>."
|
||||
|
||||
#: class.akismet-admin.php:87
|
||||
msgid "We collect information about visitors who comment on Sites that use our Akismet anti-spam service. The information we collect depends on how the User sets up Akismet for the Site, but typically includes the commenter's IP address, user agent, referrer, and Site URL (along with other information directly provided by the commenter such as their name, username, email address, and the comment itself)."
|
||||
msgstr "Zbieramy informacje o odwiedzających, którzy publikują komentarze na stronach wykorzystujących usługę ochrony przed spamem Akismet. Informacje, które zbieramy zależą od tego, jak użytkownik skonfigurował Akismet dla strony, ale zwykle obejmują adres IP komentującego, jego user agent, adres odsyłający oraz adres strony (wraz z innymi informacjami dostarczonymi bezpośrednio przez komentującego, takimi jak jego imię, nazwa użytkownika i sama treść komentarza)."
|
||||
|
||||
#: class.akismet.php:276
|
||||
msgid "Comment discarded."
|
||||
msgstr "Komentarz został odrzucony."
|
||||
|
||||
#: class.akismet-rest-api.php:174
|
||||
msgid "This site's API key is hardcoded and cannot be deleted."
|
||||
msgstr "Klucz API witryny zostały wprowadzony na twardo i nie da się go skasować."
|
||||
|
||||
#: class.akismet-rest-api.php:158
|
||||
msgid "The value provided is not a valid and registered API key."
|
||||
msgstr "Wprowadzona wartość nie jest prawidłowym i zarejestrowanym kluczem API."
|
||||
|
||||
#: class.akismet-rest-api.php:152
|
||||
msgid "This site's API key is hardcoded and cannot be changed via the API."
|
||||
msgstr "Klucz API witryny zostały wprowadzony na twardo i nie da się go zmienić przez API."
|
||||
|
||||
#: class.akismet-rest-api.php:71 class.akismet-rest-api.php:80
|
||||
msgid "The time period for which to retrieve stats. Options: 60-days, 6-months, all"
|
||||
msgstr "Okres, w którym należy pobrać statystyki. Opcje: 60 dni, 6 miesięcy, całość"
|
||||
|
||||
#: class.akismet-rest-api.php:56
|
||||
msgid "If true, show the number of approved comments beside each comment author in the comments list page."
|
||||
msgstr "Pokazuj liczbę zatwierdzonych komentarzy obok każdego autora na stronie z listą komentarzy."
|
||||
|
||||
#: class.akismet-rest-api.php:51
|
||||
msgid "If true, Akismet will automatically discard the worst spam automatically rather than putting it in the spam folder."
|
||||
msgstr "Włączone pozwoli na automatyczne odrzucanie najgorszy spam, zamiast przenoszenia do katalogu ze spamem."
|
||||
|
||||
#: class.akismet-rest-api.php:27 class.akismet-rest-api.php:101
|
||||
#: class.akismet-rest-api.php:114 class.akismet-rest-api.php:127
|
||||
msgid "A 12-character Akismet API key. Available at akismet.com/get/"
|
||||
msgstr "12-znakowy klucz API Akismeta. Dostępny na stronie akismet.com/get/"
|
||||
|
||||
#: views/notice.php:60
|
||||
msgid "Your site can’t connect to the Akismet servers."
|
||||
msgstr "Twoja witryna nie może połączyć się z serwerami Akismeta."
|
||||
|
||||
#. translators: %s is the wp-config.php file
|
||||
#: views/predefined.php:7
|
||||
msgid "An Akismet API key has been defined in the %s file for this site."
|
||||
msgstr "Klucz API Akismet dla tej witryny został zdefiniowany w pliku %s."
|
||||
|
||||
#: views/predefined.php:2
|
||||
msgid "Manual Configuration"
|
||||
msgstr "Konfiguracja ręczna"
|
||||
|
||||
#: class.akismet-admin.php:234
|
||||
msgid "On this page, you are able to update your Akismet settings and view spam stats."
|
||||
msgstr "Na stronie możesz aktualizować ustawienia Akismeta i przeglądać statystyki spamu."
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key."
|
||||
msgstr "Używany przez miliony, Akismet jest być może najlepszym rozwiązaniem na świecie w celu <strong>ochrony bloga przed spamem</strong>. Chroni witrynę nawet wtedy kiedy śpisz. Aby rozpocząć: aktywuj wtyczkę Akismet i następnie przejdź do strony konfiguracji Akismet, aby ustawić klucz API."
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: class.akismet-admin.php:112 class.akismet-admin.php:115
|
||||
msgid "Akismet Anti-Spam"
|
||||
msgstr "Akismet antyspam"
|
||||
|
||||
#: views/enter.php:9
|
||||
msgid "Connect with API key"
|
||||
msgstr "Połącz używając klucza API"
|
||||
|
||||
#. translators: %s is the WordPress.com username
|
||||
#: views/connect-jp.php:23 views/connect-jp.php:58
|
||||
msgid "You are connected as %s."
|
||||
msgstr "Połączono jako: %s."
|
||||
|
||||
#: views/connect-jp.php:10 views/connect-jp.php:18 views/connect-jp.php:31
|
||||
#: views/connect-jp.php:53 views/connect-jp.php:65
|
||||
msgid "Connect with Jetpack"
|
||||
msgstr "Połącz z Jetpackiem"
|
||||
|
||||
#: views/connect-jp.php:12 views/connect-jp.php:25 views/connect-jp.php:48
|
||||
msgid "Use your Jetpack connection to set up Akismet."
|
||||
msgstr "Użyj połączenia z Jetpackiem aby ustawić Akismet."
|
||||
|
||||
#: views/title.php:2
|
||||
msgid "Eliminate spam from your site"
|
||||
msgstr "Wyeliminuj spam ze swojej witryny"
|
||||
|
||||
#: views/notice.php:112
|
||||
msgid "Would you like to <a href=\"%s\">check pending comments</a>?"
|
||||
msgstr "Czy chcesz <a href=\"%s\">sprawdzić oczekujące komentarze</a>?"
|
||||
|
||||
#: views/notice.php:110
|
||||
msgid "Akismet is now protecting your site from spam. Happy blogging!"
|
||||
msgstr "Akismet chroni teraz Twoją witrynę przed spamem. Szczęśliwego blogowania!"
|
||||
|
||||
#: views/notice.php:14 views/setup.php:3
|
||||
msgid "Set up your Akismet account"
|
||||
msgstr "Skonfiguruj swoje konto Akismeta"
|
||||
|
||||
#: views/config.php:32
|
||||
msgid "Detailed Stats"
|
||||
msgstr "Szczegółowe statystyki"
|
||||
|
||||
#: views/config.php:28
|
||||
msgid "Statistics"
|
||||
msgstr "Statystyka"
|
||||
|
||||
#: class.akismet-admin.php:1247
|
||||
msgid "Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. It keeps your site protected even while you sleep. To get started, just go to <a href=\"admin.php?page=akismet-key-config\">your Akismet Settings page</a> to set up your API key."
|
||||
msgstr "Używany przez miliony, Akismet jest być może najlepszym rozwiązaniem na świecie stworzonym w celu <strong>ochrony bloga przed spamem</strong>. Chroni witrynę nawet wtedy kiedy śpisz. Aby rozpocząć, przejdź do <a href=\"admin.php?page=akismet-key-config\">strony konfiguracji Akismet</a>, aby ustawić klucz API."
|
||||
|
||||
#: class.akismet-admin.php:1244
|
||||
msgid "Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. Your site is fully configured and being protected, even while you sleep."
|
||||
msgstr "Używany przez miliony, Akismet jest być może najlepszym rozwiązaniem na świecie w celu <strong>ochrony bloga przed spamem</strong>. Witryna jest w pełni skonfigurowana i jest chroniona, nawet wtedy kiedy śpisz."
|
||||
|
||||
#: class.akismet-admin.php:1136
|
||||
msgid "%s comment was caught as spam."
|
||||
msgid_plural "%s comments were caught as spam."
|
||||
msgstr[0] "%s komentarz został oznaczony jako spam."
|
||||
msgstr[1] "%s komentarze zostały oznaczone jako spam."
|
||||
msgstr[2] "%s komentarzy zostało oznaczonych jako spam."
|
||||
|
||||
#: class.akismet-admin.php:1133
|
||||
msgid "No comments were caught as spam."
|
||||
msgstr "Nie znaleziono komentarzy do oznaczenia jako spam."
|
||||
|
||||
#: class.akismet-admin.php:1129
|
||||
msgid "Akismet checked %s comment."
|
||||
msgid_plural "Akismet checked %s comments."
|
||||
msgstr[0] "Akismet sprawdził %s komentarz."
|
||||
msgstr[1] "Akismet sprawdził %s komentarze."
|
||||
msgstr[2] "Akismet sprawdził %s komentarzy."
|
||||
|
||||
#: class.akismet-admin.php:1126
|
||||
msgid "There were no comments to check. Akismet will only check comments awaiting moderation."
|
||||
msgstr "Brak komentarzy do sprawdzenia. Akismet sprawdza jedynie komentarze w kolejce oczekujących."
|
||||
|
||||
#: class.akismet.php:645
|
||||
msgid "Comment not found."
|
||||
msgstr "Nie znaleziono komentarza."
|
||||
|
||||
#: class.akismet-cli.php:88
|
||||
msgid "%d comment could not be checked."
|
||||
msgid_plural "%d comments could not be checked."
|
||||
msgstr[0] "%d komentarz nie mógł zostać sprawdzony."
|
||||
msgstr[1] "%d komentarze nie mogły zostać sprawdzone."
|
||||
msgstr[2] "%d komentarzy nie mogło zostać sprawdzonych."
|
||||
|
||||
#: class.akismet-cli.php:85
|
||||
msgid "%d comment moved to Spam."
|
||||
msgid_plural "%d comments moved to Spam."
|
||||
msgstr[0] "%d komentarz został przeniesiony do spamu."
|
||||
msgstr[1] "%d komentarze zostały przeniesione do spamu."
|
||||
msgstr[2] "%d komentarzy zostało przeniesionych do spamu."
|
||||
|
||||
#: class.akismet-cli.php:84
|
||||
msgid "Processed %d comment."
|
||||
msgid_plural "Processed %d comments."
|
||||
msgstr[0] "Przetworzono %d komentarz."
|
||||
msgstr[1] "Przetworzono %d komentarze."
|
||||
msgstr[2] "Przetworzono %d komentarzy."
|
||||
|
||||
#: class.akismet-cli.php:46
|
||||
msgid "Comment #%d could not be checked."
|
||||
msgstr "Komentarz #%d nie mógł zostać sprawdzony."
|
||||
|
||||
#: class.akismet-cli.php:43
|
||||
msgid "Failed to connect to Akismet."
|
||||
msgstr "Nie udało się połączyć z Akismetem."
|
||||
|
||||
#: class.akismet-cli.php:39
|
||||
msgid "Comment #%d is not spam."
|
||||
msgstr "Komentarz #%d nie jest spamem."
|
||||
|
||||
#: class.akismet-cli.php:36
|
||||
msgid "Comment #%d is spam."
|
||||
msgstr "Komentarz #%d to spam."
|
||||
|
||||
#: views/config.php:55
|
||||
msgid "%s false positive"
|
||||
msgid_plural "%s false positives"
|
||||
msgstr[0] "%s niesłusznie zakwalifikowany spam"
|
||||
msgstr[1] "%s niesłusznie zakwalifikowane spamy"
|
||||
msgstr[2] "%s niesłusznie zakwalifikowanych spamów"
|
||||
|
||||
#: views/config.php:53
|
||||
msgid "%s missed spam"
|
||||
msgid_plural "%s missed spam"
|
||||
msgstr[0] "%s przeoczony spam"
|
||||
msgstr[1] "%s przeoczone spamy"
|
||||
msgstr[2] "%s przeoczonych spamów"
|
||||
|
||||
#: views/notice.php:90
|
||||
msgid "You don’t have an Akismet plan."
|
||||
msgstr "Nie masz włączonego pakietu Akismeta."
|
||||
|
||||
#: views/notice.php:75
|
||||
msgid "Your Akismet subscription is suspended."
|
||||
msgstr "Twój abonament Akismet jest zawieszony."
|
||||
|
||||
#: views/notice.php:70
|
||||
msgid "Your Akismet plan has been cancelled."
|
||||
msgstr "Twój pakiet Akismeta został anulowany."
|
||||
|
||||
#: views/notice.php:66
|
||||
msgid "We cannot process your payment. Please <a href=\"%s\" target=\"_blank\">update your payment details</a>."
|
||||
msgstr "Nie możemy przetworzyć twojej płatności. Prosimy o <a href=\"%s\" target=\"_blank\">zaktualizowanie danych płatności</a>."
|
||||
|
||||
#: views/notice.php:65
|
||||
msgid "Please update your payment information."
|
||||
msgstr "Zaktualizuj swoje dane płatności."
|
||||
|
||||
#: views/notice.php:17
|
||||
msgid "<strong>Almost done</strong> - configure Akismet and say goodbye to spam"
|
||||
msgstr "<strong>Prawie zrobione</strong> - skonfiguruj Akismeta i pożegnaj się ze spamem"
|
||||
|
||||
#: class.akismet-admin.php:1048
|
||||
msgid "Akismet has saved you %d minute!"
|
||||
msgid_plural "Akismet has saved you %d minutes!"
|
||||
msgstr[0] "Akismet oszczędził ci %d minutę!"
|
||||
msgstr[1] "Akismet oszczędził ci %d minuty!"
|
||||
msgstr[2] "Akismet oszczędził ci %d minut!"
|
||||
|
||||
#: class.akismet-admin.php:1046
|
||||
msgid "Akismet has saved you %d hour!"
|
||||
msgid_plural "Akismet has saved you %d hours!"
|
||||
msgstr[0] "Akismet oszczędził ci %d godzinę!"
|
||||
msgstr[1] "Akismet oszczędził ci %d godziny!"
|
||||
msgstr[2] "Akismet oszczędził ci %d godzin!"
|
||||
|
||||
#: class.akismet-admin.php:1044
|
||||
msgid "Akismet has saved you %s day!"
|
||||
msgid_plural "Akismet has saved you %s days!"
|
||||
msgstr[0] "Akismet oszczędził ci %s dzień!"
|
||||
msgstr[1] "Akismet oszczędził ci %s dni!"
|
||||
msgstr[2] "Akismet oszczędził ci %s dni!"
|
||||
|
||||
#: class.akismet-admin.php:182 class.akismet-admin.php:220
|
||||
#: class.akismet-admin.php:233
|
||||
msgid "Akismet filters out spam, so you can focus on more important things."
|
||||
msgstr "Akismet odfiltrowuje spam, dzięki czemu możesz skupić się na ważniejszych rzeczach."
|
||||
|
||||
#: views/notice.php:193
|
||||
msgid "To continue your service, <a href=\"%s\" target=\"_blank\">upgrade to an Enterprise subscription</a>, which covers an unlimited number of sites."
|
||||
msgstr "Żeby nadal korzystać z usługi <a href=\"%s\" target=\"_blank\">przejdź na abonament Enterprise</a>, który nie ma limitu aktywnych instalacji."
|
||||
|
||||
#. translators: The placeholder is a URL.
|
||||
#: views/notice.php:175
|
||||
msgid "Your Plus subscription allows the use of Akismet on only one site. Please <a href=\"%s\" target=\"_blank\">purchase additional Plus subscriptions</a> or upgrade to an Enterprise subscription that allows the use of Akismet on unlimited sites."
|
||||
msgstr "Twój abonament wersji Plus zezwala na używanie Akismeta jedynie na jednej witrynie. <a href=\"%s\" target=\"_blank\">Zwiększ liczbę subskrypcji Plus</a>, albo przejdź na abonament Enterprise, który umożliwia używanie Akismeta na nieograniczonej ilości witryn."
|
||||
|
||||
#. translators: The placeholder is a URL.
|
||||
#: views/notice.php:151
|
||||
msgid "The connection to akismet.com could not be established. Please refer to <a href=\"%s\" target=\"_blank\">our guide about firewalls</a> and check your server configuration."
|
||||
msgstr "Brak możliwości połączenia się do akismet.com. Proszę zapoznać się z naszym <a href=\"%s\" target=\"_blank\">poradnikiem o firewallach</a> i sprawdzić konfigurację serwera.."
|
||||
|
||||
#: views/notice.php:144
|
||||
msgid "The API key you entered could not be verified."
|
||||
msgstr "Nie można zweryfikować wprowadzonego klucza."
|
||||
|
||||
#: views/notice.php:94 views/notice.php:188 views/notice.php:195
|
||||
msgid "Please <a href=\"%s\" target=\"_blank\">contact our support team</a> with any questions."
|
||||
msgstr "Jeśli masz jakieś pytania, <a href=\"%s\" target=\"_blank\">skontaktuj się z naszym działem wsparcia</a>."
|
||||
|
||||
#: views/notice.php:92
|
||||
msgid "In 2012, Akismet began using subscription plans for all accounts (even free ones). A plan has not been assigned to your account, and we’d appreciate it if you’d <a href=\"%s\" target=\"_blank\">sign into your account</a> and choose one."
|
||||
msgstr "W 2012 roku Akismet wprowadził wymóg zapisywania się pakiety dla wszystkich kont (nawet tych bezpłatnych). Na twoim koncie nie jest włączony żaden pakiet, więc prosimy o <a href=\"%s\" target=\"_blank\">zalogowanie się</a> i wybranie jednej z dostępnych opcji."
|
||||
|
||||
#: views/config.php:103
|
||||
msgid "All systems functional."
|
||||
msgstr "Wszystko działa."
|
||||
|
||||
#: views/config.php:103
|
||||
msgid "Enabled."
|
||||
msgstr "Dostępne."
|
||||
|
||||
#: views/config.php:100
|
||||
msgid "Akismet encountered a problem with a previous SSL request and disabled it temporarily. It will begin using SSL for requests again shortly."
|
||||
msgstr "Akismet tymczasowo wyłączył połączenia SSL z powodu problemów z poprzednim połączeniem tego typu. Wkrótce znowu spróbuje połączeń SSL."
|
||||
|
||||
#: views/config.php:100
|
||||
msgid "Temporarily disabled."
|
||||
msgstr "Tymczasowo niedostępne."
|
||||
|
||||
#: views/config.php:94
|
||||
msgid "Your Web server cannot make SSL requests; contact your Web host and ask them to add support for SSL requests."
|
||||
msgstr "Twój serwer nie potrafi skorzystać z SSL'a. Proszę skontaktować się z administratorem serwera i dodać obsługę zapytań SSL."
|
||||
|
||||
#: views/config.php:94
|
||||
msgid "Disabled."
|
||||
msgstr "Niedostępne."
|
||||
|
||||
#: views/config.php:87
|
||||
msgid "SSL Status"
|
||||
msgstr "Status SSL"
|
||||
|
||||
#: class.akismet-admin.php:632
|
||||
msgid "This comment was reported as not spam."
|
||||
msgstr "Ten komentarz został zgłoszony jako nie spam."
|
||||
|
||||
#: class.akismet-admin.php:624
|
||||
msgid "This comment was reported as spam."
|
||||
msgstr "Ten komentarz został zgłoszony jako spam."
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://automattic.com/wordpress-plugins/"
|
||||
msgstr "https://automattic.com/wordpress-plugins/"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Automattic"
|
||||
msgstr "Automattic"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://akismet.com/"
|
||||
msgstr "https://akismet.com/"
|
||||
|
||||
#: views/enter.php:2
|
||||
msgid "Manually enter an API key"
|
||||
msgstr "Wprowadź klucz do API ręcznie"
|
||||
|
||||
#: views/connect-jp.php:39
|
||||
msgid "Contact Akismet support"
|
||||
msgstr "Skontaktuj się z obsługą Akismeta"
|
||||
|
||||
#: views/connect-jp.php:45
|
||||
msgid "No worries! Get in touch and we’ll sort this out."
|
||||
msgstr "Nie martw się! Skontaktuj się z nami, a pomożemy ci to rozwiązać."
|
||||
|
||||
#. translators: %s is the WordPress.com email address
|
||||
#: views/connect-jp.php:44
|
||||
msgid "Your subscription for %s is suspended."
|
||||
msgstr "Twój abonament %s jest zawieszony."
|
||||
|
||||
#. translators: %s is the WordPress.com email address
|
||||
#: views/connect-jp.php:36
|
||||
msgid "Your subscription for %s is cancelled."
|
||||
msgstr "Abonament %s został anulowany."
|
||||
|
||||
#: views/notice.php:191
|
||||
msgid "You’re using Akismet on far too many sites for your Plus subscription."
|
||||
msgstr "Używasz Akismeta na stanowczo zbyt dużej liczbie witryn jak na abonament Plus."
|
||||
|
||||
#: views/notice.php:168
|
||||
msgid "You’re using your Akismet key on more sites than your Plus subscription allows."
|
||||
msgstr "Używasz swojego klucza do Akismeta na większej liczbie witryn niż pozwala na to twój abonament Plus."
|
||||
|
||||
#: views/notice.php:117
|
||||
msgid "The key you entered is invalid. Please double-check it."
|
||||
msgstr "Wprowadzony klucz jest nieprawidłowy. Proszę sprawdzić go dwukrotnie."
|
||||
|
||||
#: views/notice.php:85
|
||||
msgid "There is a problem with your API key."
|
||||
msgstr "Wystąpił problem z twoim kluczem API."
|
||||
|
||||
#: views/notice.php:81
|
||||
msgid "You can help us fight spam and upgrade your account by <a href=\"%s\" target=\"_blank\">contributing a token amount</a>."
|
||||
msgstr "Możesz nam pomóc walczyć ze spamem i ulepszyć swoje konto, <a href=\"%s\" target=\"_blank\">uiszczając symboliczną opłatę</a>."
|
||||
|
||||
#: views/notice.php:76 views/notice.php:86
|
||||
msgid "Please contact <a href=\"%s\" target=\"_blank\">Akismet support</a> for assistance."
|
||||
msgstr "Proszę skontaktować się z <a href=\"%s\" target=\"_blank\">obsługą Akismeta</a>, aby uzyskać pomoc."
|
||||
|
||||
#: views/notice.php:71
|
||||
msgid "Please visit your <a href=\"%s\" target=\"_blank\">Akismet account page</a> to reactivate your subscription."
|
||||
msgstr "Proszę przejść na <a href=\"%s\" target=\"_blank\">stronę konta w Akismecie</a>, aby ponownie włączyć swój abonament."
|
||||
|
||||
#: views/notice.php:61
|
||||
msgid "Your firewall may be blocking Akismet from connecting to its API. Please contact your host and refer to <a href=\"%s\" target=\"_blank\">our guide about firewalls</a>."
|
||||
msgstr "Błąd połączenia Akismem do API może być spowodowany blokadą ruchu przez zaporę sieciową. Proszę skontaktować się z administratorem serwera i wysłać mu <a href=\"%s\" target=\"_blank\">nasz poradnik dotyczący zapór sieciowych</a>."
|
||||
|
||||
#: views/notice.php:56
|
||||
msgid "Your web host or server administrator has disabled PHP’s <code>gethostbynamel</code> function. <strong>Akismet cannot work correctly until this is fixed.</strong> Please contact your web host or firewall administrator and give them <a href=\"%s\" target=\"_blank\">this information about Akismet’s system requirements</a>."
|
||||
msgstr "Administrator serwera zablokował funkcje PHP’s <code>gethostbynamel</code>. <strong>Akismet nie może pracować bez tej funkcji.</strong> Proszę skontaktować się z administratorem i przekazać <a href=\"%s\" target=\"_blank\">informację na temat minimalnych wymagań Akismeta</a>."
|
||||
|
||||
#: views/notice.php:55
|
||||
msgid "Network functions are disabled."
|
||||
msgstr "Funkcja sieci jest wyłączona."
|
||||
|
||||
#. translators: the placeholder is a clickable URL that leads to more
|
||||
#. information regarding an error code.
|
||||
#: views/notice.php:41
|
||||
msgid "For more information: %s"
|
||||
msgstr "Więcej informacji: %s"
|
||||
|
||||
#: views/notice.php:36
|
||||
msgid "Akismet Error Code: %s"
|
||||
msgstr "Kod błędu Aksimeta: %s"
|
||||
|
||||
#: views/notice.php:24
|
||||
msgid "Some comments have not yet been checked for spam by Akismet. They have been temporarily held for moderation and will automatically be rechecked later."
|
||||
msgstr "Niektóre z komentarzy nie zostały jeszcze sprawdzone przez Akismet. Zostaną jeszcze tymczasowo zatrzymane do moderacji i będą automatycznie sprawdzone za jakiś czas."
|
||||
|
||||
#: views/notice.php:23 views/notice.php:31
|
||||
msgid "Akismet has detected a problem."
|
||||
msgstr "Akismet wykrył problem."
|
||||
|
||||
#: views/config.php:241
|
||||
msgid "Change"
|
||||
msgstr "Zmień"
|
||||
|
||||
#: views/config.php:241
|
||||
msgid "Upgrade"
|
||||
msgstr "Ulepszenie"
|
||||
|
||||
#: views/config.php:230
|
||||
msgid "Next Billing Date"
|
||||
msgstr "Data następnego pobrania opłaty"
|
||||
|
||||
#: views/config.php:224
|
||||
msgid "Active"
|
||||
msgstr "Włączono"
|
||||
|
||||
#: views/config.php:222
|
||||
msgid "No Subscription Found"
|
||||
msgstr "Nie znaleziono abonamentu"
|
||||
|
||||
#: views/config.php:220
|
||||
msgid "Missing"
|
||||
msgstr "Brak"
|
||||
|
||||
#: views/config.php:218
|
||||
msgid "Suspended"
|
||||
msgstr "Zawieszone"
|
||||
|
||||
#: views/config.php:216
|
||||
msgid "Cancelled"
|
||||
msgstr "Anulowano"
|
||||
|
||||
#: views/config.php:184
|
||||
msgid "Save Changes"
|
||||
msgstr "Zapisz zmiany"
|
||||
|
||||
#: views/config.php:178
|
||||
msgid "Disconnect this account"
|
||||
msgstr "Odłącz to konto"
|
||||
|
||||
#: views/config.php:149
|
||||
msgid "Spam in the <a href=\"%1$s\">spam folder</a> older than 1 day is deleted automatically."
|
||||
msgid_plural "Spam in the <a href=\"%1$s\">spam folder</a> older than %2$d days is deleted automatically."
|
||||
msgstr[0] "Niechciane komentarze, znajdujące się w <a href=\"%1$s\">folderze spam</a> są automatycznie usuwane po 1 dniu."
|
||||
msgstr[1] "Niechciane komentarze, znajdujące się w <a href=\"%1$s\">folderze spam</a> są automatycznie usuwane po %2$d dniach."
|
||||
msgstr[2] "Niechciane komentarze, znajdujące się w <a href=\"%1$s\">folderze spam</a> są automatycznie usuwane po %2$d dniach."
|
||||
|
||||
#: views/config.php:143
|
||||
msgid "Note:"
|
||||
msgstr "Adnotacja:"
|
||||
|
||||
#: views/config.php:141
|
||||
msgid "Always put spam in the Spam folder for review."
|
||||
msgstr "Zawsze umieszczaj wiadomości podejrzane o bycie spamem do przejrzenia w folderze „Spam”."
|
||||
|
||||
#: views/config.php:140
|
||||
msgid "Silently discard the worst and most pervasive spam so I never see it."
|
||||
msgstr "Automatycznie odrzucaj najbardziej podejrzane wiadomości, aby nie były nigdy wyświetlane."
|
||||
|
||||
#: views/config.php:139
|
||||
msgid "Akismet anti-spam strictness"
|
||||
msgstr "Rygorystyczność filtra antyspamowego Akismeta"
|
||||
|
||||
#: views/config.php:130
|
||||
msgid "Show the number of approved comments beside each comment author"
|
||||
msgstr "Wyświetl liczbę zatwierdzonych komentarzy obok każdego podpisu autora"
|
||||
|
||||
#: views/config.php:117
|
||||
msgid "Show approved comments"
|
||||
msgstr "Pokaż zatwierdzone komentarze"
|
||||
|
||||
#: views/config.php:51
|
||||
msgid "Accuracy"
|
||||
msgstr "Trafność"
|
||||
|
||||
#: views/config.php:46
|
||||
msgid "All time"
|
||||
msgstr "Cały czas"
|
||||
|
||||
#: views/config.php:43 views/config.php:48
|
||||
msgid "Spam blocked"
|
||||
msgid_plural "Spam blocked"
|
||||
msgstr[0] "Zablokowany spam"
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#: views/config.php:41
|
||||
msgid "Past six months"
|
||||
msgstr "W ciągu ostatnich sześciu miesięcy"
|
||||
|
||||
#: class.akismet.php:1504
|
||||
msgid "Please <a href=\"%1$s\">upgrade WordPress</a> to a current version, or <a href=\"%2$s\">downgrade to version 2.4 of the Akismet plugin</a>."
|
||||
msgstr "<a href=\"%1$s\">Zaktualizuj WordPressa</a> do najnowszej wersji lub <a href=\"%2$s\">przywróć wersję 2.4 wtyczki Akismet</a>."
|
||||
|
||||
#: class.akismet.php:1504
|
||||
msgid "Akismet %s requires WordPress %s or higher."
|
||||
msgstr "Akismet %s do działania wymaga WordPressa w wersji %s lub nowszej."
|
||||
|
||||
#: class.akismet-admin.php:639
|
||||
msgid "Akismet cleared this comment during an automatic retry."
|
||||
msgstr "Akismet przepuścił ten komentarz podczas automatycznego ponownego sprawdzenia."
|
||||
|
||||
#: class.akismet-admin.php:636
|
||||
msgid "Akismet caught this comment as spam during an automatic retry."
|
||||
msgstr "Akismet wychwycił ten komentarz jako będący spamem podczas automatycznej ponownej próby sprawdzenia."
|
||||
|
||||
#. translators: The placeholder is a username.
|
||||
#: class.akismet-admin.php:630
|
||||
msgid "%s reported this comment as not spam."
|
||||
msgstr "%s zgłosił ten komentarz jako nie spam."
|
||||
|
||||
#. translators: The placeholder is a username.
|
||||
#: class.akismet-admin.php:622
|
||||
msgid "%s reported this comment as spam."
|
||||
msgstr "Użytkownik %s zgłosił ten komentarz jako będący spamem."
|
||||
|
||||
#. translators: %1$s is a username; %2$s is a short string (like 'spam' or
|
||||
#. 'approved') denoting the new comment status.
|
||||
#: class.akismet-admin.php:669
|
||||
msgid "%1$s changed the comment status to %2$s."
|
||||
msgstr "Użytkownik %1$s zmienił status komentarza na %2$s."
|
||||
|
||||
#. translators: The placeholder is an error response returned by the API
|
||||
#. server.
|
||||
#: class.akismet-admin.php:644
|
||||
msgid "Akismet was unable to check this comment (response: %s) but will automatically retry later."
|
||||
msgstr "Akismet nie mógł sprawdzić tego komentarza (odpowiedź: %s), ale automatycznie spróbuje ponownie później."
|
||||
|
||||
#: class.akismet-admin.php:609
|
||||
msgid "Akismet cleared this comment."
|
||||
msgstr "Akismet zatwierdził ten komentarz."
|
||||
|
||||
#. translators: The placeholder is a short string (like 'spam' or 'approved')
|
||||
#. denoting the new comment status.
|
||||
#: class.akismet-admin.php:663
|
||||
msgid "Comment status was changed to %s"
|
||||
msgstr "Stan komentarza został zmieniony na „%s”"
|
||||
|
||||
#: class.akismet-admin.php:603
|
||||
msgid "Akismet caught this comment as spam."
|
||||
msgstr "Akismet oznaczył ten komentarz jako spam."
|
||||
|
||||
#. translators: The placeholder is the number of pieces of spam blocked by
|
||||
#. Akismet.
|
||||
#: class.akismet-widget.php:108
|
||||
msgid "<strong class=\"count\">%1$s spam</strong> blocked by <strong>Akismet</strong>"
|
||||
msgid_plural "<strong class=\"count\">%1$s spam</strong> blocked by <strong>Akismet</strong>"
|
||||
msgstr[0] "<strong class=\"count\">%1$s komentarz będący spamem</strong> został zablokowany przez <strong>Akismeta</strong>"
|
||||
msgstr[1] "<strong class=\"count\">%1$s komentarze będące spamem</strong> zostały zablokowane przez <strong>Akismeta</strong>"
|
||||
msgstr[2] "<strong class=\"count\">%1$s komentarzy będących spamem</strong> zostało zablokowanych przez <strong>Akismeta</strong>"
|
||||
|
||||
#: class.akismet-widget.php:74
|
||||
msgid "Title:"
|
||||
msgstr "Tytuł:"
|
||||
|
||||
#: class.akismet-widget.php:69 class.akismet-widget.php:90
|
||||
msgid "Spam Blocked"
|
||||
msgstr "Zablokowany spam"
|
||||
|
||||
#: class.akismet-widget.php:13
|
||||
msgid "Display the number of spam comments Akismet has caught"
|
||||
msgstr "Wyświetl liczbę komentarzy, które Akismet uznał za spam"
|
||||
|
||||
#: class.akismet-widget.php:12
|
||||
msgid "Akismet Widget"
|
||||
msgstr "Widget Akismeta"
|
||||
|
||||
#: class.akismet-admin.php:1041
|
||||
msgid "Cleaning up spam takes time."
|
||||
msgstr "Usuwanie spamu może trochę potrwać."
|
||||
|
||||
#. translators: The Akismet configuration page URL.
|
||||
#: class.akismet-admin.php:933
|
||||
msgid "Please check your <a href=\"%s\">Akismet configuration</a> and contact your web host if problems persist."
|
||||
msgstr "Sprawdź <a href=\"%s\">konfigurację Akismeta</a> i jeżeli problem nadal występuje, to skontaktuj się z administratorem serwera."
|
||||
|
||||
#. translators: The placeholder is an amount of time, like "7 seconds" or "3
|
||||
#. days" returned by the function human_time_diff().
|
||||
#: class.akismet-admin.php:683
|
||||
msgid "%s ago"
|
||||
msgstr "%s temu"
|
||||
|
||||
#: class.akismet-admin.php:576
|
||||
msgid "%s approved"
|
||||
msgid_plural "%s approved"
|
||||
msgstr[0] "%s zatwierdzono"
|
||||
msgstr[1] "%s zatwierdzone"
|
||||
msgstr[2] "%s zatwierdzonych"
|
||||
|
||||
#: class.akismet-admin.php:553
|
||||
msgid "History"
|
||||
msgstr "Historia"
|
||||
|
||||
#: class.akismet-admin.php:553 class.akismet-admin.php:561
|
||||
msgid "View comment history"
|
||||
msgstr "Pokaż oś czasu komentarzy"
|
||||
|
||||
#: class.akismet-admin.php:541
|
||||
msgid "Un-spammed by %s"
|
||||
msgstr "Cofnięte ze spamu przez %s"
|
||||
|
||||
#: class.akismet-admin.php:539
|
||||
msgid "Flagged as spam by %s"
|
||||
msgstr "Oznaczone jako spam przez %s"
|
||||
|
||||
#: class.akismet-admin.php:535
|
||||
msgid "Cleared by Akismet"
|
||||
msgstr "Przepuszczony przez Akismeta"
|
||||
|
||||
#: class.akismet-admin.php:533
|
||||
msgid "Flagged as spam by Akismet"
|
||||
msgstr "Oznaczone jako spam przez Akismet"
|
||||
|
||||
#: class.akismet-admin.php:529
|
||||
msgid "Awaiting spam check"
|
||||
msgstr "Oczekujące na sprawdzenie"
|
||||
|
||||
#. translators: The placeholder is an error response returned by the API
|
||||
#. server.
|
||||
#: class.akismet-admin.php:652
|
||||
msgid "Akismet was unable to recheck this comment (response: %s)."
|
||||
msgstr "Akismet nie mógł sprawdzić ponownie tego komentarza (odpowiedź: %s)."
|
||||
|
||||
#: class.akismet-admin.php:606
|
||||
msgid "Akismet re-checked and cleared this comment."
|
||||
msgstr "Akismet ponownie przeanalizował i zatwierdził ten komentarz."
|
||||
|
||||
#: class.akismet-admin.php:600
|
||||
msgid "Akismet re-checked and caught this comment as spam."
|
||||
msgstr "Akismet sprawdził ponownie i oznaczył ten komentarz jako spam."
|
||||
|
||||
#: class.akismet-admin.php:422
|
||||
msgid "Check for Spam"
|
||||
msgstr "Szukaj spamu"
|
||||
|
||||
#: class.akismet-admin.php:375
|
||||
msgid "There’s nothing in your <a href='%s'>spam queue</a> at the moment."
|
||||
msgstr "W <a href='%s'>kolejce</a> nie znajdują się obecnie żadne komentarze."
|
||||
|
||||
#: class.akismet-admin.php:369
|
||||
msgid "There’s <a href=\"%2$s\">%1$s comment</a> in your spam queue right now."
|
||||
msgid_plural "There are <a href=\"%2$s\">%1$s comments</a> in your spam queue right now."
|
||||
msgstr[0] "Obecnie <a href=\"%2$s\">%1$s komentarz</a> oczekuje w kolejce spamu."
|
||||
msgstr[1] "Obecnie <a href=\"%2$s\">%1$s komentarze</a> oczekują w kolejce spamu."
|
||||
msgstr[2] "Obecnie <a href=\"%2$s\">%1$s komentarzy</a> oczekuje w kolejce spamu."
|
||||
|
||||
#: class.akismet-admin.php:363
|
||||
msgid "<a href=\"%s\">Akismet</a> blocks spam from getting to your blog. "
|
||||
msgstr "<a href=\"%s\">Akismet</a> blokuje spam przed pojawieniem się w serwisie. "
|
||||
|
||||
#: class.akismet-admin.php:357
|
||||
msgid "<a href=\"%1$s\">Akismet</a> has protected your site from %2$s spam comment already. "
|
||||
msgid_plural "<a href=\"%1$s\">Akismet</a> has protected your site from %2$s spam comments already. "
|
||||
msgstr[0] "Dotychczas <a href=\"%1$s\">Akismet</a> ochronił Twoją witrynę przed %2$s komentarzem będącym spamem."
|
||||
msgstr[1] "Dotychczas <a href=\"%1$s\">Akismet</a> ochronił Twoją witrynę przed %2$s komentarzami będącymi spamem."
|
||||
msgstr[2] "Dotychczas <a href=\"%1$s\">Akismet</a> ochronił Twoją witrynę przed %2$s komentarzami będącymi spamem."
|
||||
|
||||
#: class.akismet-admin.php:347
|
||||
msgid "<a href=\"%1$s\">Akismet</a> has protected your site from <a href=\"%2$s\">%3$s spam comment</a>."
|
||||
msgid_plural "<a href=\"%1$s\">Akismet</a> has protected your site from <a href=\"%2$s\">%3$s spam comments</a>."
|
||||
msgstr[0] "Dotychczas <a href=\"%1$s\">Akismet</a> ochronił witrynę przed <a href=\"%2$s\">%3$s komentarzem będącym spamem</a>."
|
||||
msgstr[1] "Dotychczas <a href=\"%1$s\">Akismet</a> ochronił witrynę przed <a href=\"%2$s\">%3$s komentarzami będącymi spamem</a>."
|
||||
msgstr[2] "Dotychczas <a href=\"%1$s\">Akismet</a> ochronił witrynę przed <a href=\"%2$s\">%3$s komentarzami będącymi spamem</a>."
|
||||
|
||||
#: class.akismet-admin.php:345
|
||||
msgctxt "comments"
|
||||
msgid "Spam"
|
||||
msgstr "Spam"
|
||||
|
||||
#: class.akismet-admin.php:275
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Oszukujemy, co?"
|
||||
|
||||
#: class.akismet-admin.php:269
|
||||
msgid "Akismet Support"
|
||||
msgstr "Obsługa Akismeta"
|
||||
|
||||
#: class.akismet-admin.php:268
|
||||
msgid "Akismet FAQ"
|
||||
msgstr "FAQ Akismeta"
|
||||
|
||||
#: class.akismet-admin.php:267
|
||||
msgid "For more information:"
|
||||
msgstr "Więcej informacji:"
|
||||
|
||||
#: class.akismet-admin.php:258
|
||||
msgid "The subscription status - active, cancelled or suspended"
|
||||
msgstr "Stan abonamentu - aktywny, anulowany lub zawieszony"
|
||||
|
||||
#: class.akismet-admin.php:258 views/config.php:211
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: class.akismet-admin.php:257
|
||||
msgid "The Akismet subscription plan"
|
||||
msgstr "Abonament Akismetu"
|
||||
|
||||
#: class.akismet-admin.php:257 views/config.php:204
|
||||
msgid "Subscription Type"
|
||||
msgstr "Rodzaj abonamentu"
|
||||
|
||||
#: class.akismet-admin.php:254 views/config.php:196
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#: class.akismet-admin.php:246
|
||||
msgid "Choose to either discard the worst spam automatically or to always put all spam in spam folder."
|
||||
msgstr "Wybierz czy najbardziej podejrzane wiadomości mają być automatycznie odrzucane, czy umieszczane, jak inne wiadomości podejrzane o bycie spamem, w folderze ze spamem."
|
||||
|
||||
#: class.akismet-admin.php:246 views/config.php:136
|
||||
msgid "Strictness"
|
||||
msgstr "Surowość"
|
||||
|
||||
#: class.akismet-admin.php:245
|
||||
msgid "Show the number of approved comments beside each comment author in the comments list page."
|
||||
msgstr "Pokazuj liczbę zatwierdzonych komentarzy obok każdego autora na stronie z listą komentarzy."
|
||||
|
||||
#: class.akismet-admin.php:245 views/config.php:113
|
||||
msgid "Comments"
|
||||
msgstr "Komentarze"
|
||||
|
||||
#: class.akismet-admin.php:244
|
||||
msgid "Enter/remove an API key."
|
||||
msgstr "Wprowadź/usuń klucz do API."
|
||||
|
||||
#: class.akismet-admin.php:244 views/config.php:77
|
||||
msgid "API Key"
|
||||
msgstr "Klucz API"
|
||||
|
||||
#: class.akismet-admin.php:232 class.akismet-admin.php:243
|
||||
#: class.akismet-admin.php:256
|
||||
msgid "Akismet Configuration"
|
||||
msgstr "Konfiguracja Akismeta"
|
||||
|
||||
#: class.akismet-admin.php:221
|
||||
msgid "On this page, you are able to view stats on spam filtered on your site."
|
||||
msgstr "Na tej stronie wyświetlane są statystyki dot. spamu odfiltrowanego na twojej witrynie."
|
||||
|
||||
#: class.akismet-admin.php:219
|
||||
msgid "Akismet Stats"
|
||||
msgstr "Statystyki Akismeta"
|
||||
|
||||
#: class.akismet-admin.php:207
|
||||
msgid "Click the Use this Key button."
|
||||
msgstr "Kliknij przycisk „Użyj tego klucza”."
|
||||
|
||||
#: class.akismet-admin.php:206
|
||||
msgid "Copy and paste the API key into the text field."
|
||||
msgstr "Skopiuj go i wklej do poniższego pola."
|
||||
|
||||
#: class.akismet-admin.php:204
|
||||
msgid "If you already have an API key"
|
||||
msgstr "Jeśli posiadasz już klucz do API"
|
||||
|
||||
#: class.akismet-admin.php:201
|
||||
msgid "Enter an API Key"
|
||||
msgstr "Wprowadź klucz do API"
|
||||
|
||||
#: class.akismet-admin.php:194
|
||||
msgid "Sign up for an account on %s to get an API Key."
|
||||
msgstr "Zarejestruj konto na %s, aby otrzymać klucz do API."
|
||||
|
||||
#: class.akismet-admin.php:193
|
||||
msgid "You need to enter an API key to activate the Akismet service on your site."
|
||||
msgstr "Potrzebujesz kulcza do API Akismeta, aby móc go używać na swojej witrynie."
|
||||
|
||||
#: class.akismet-admin.php:190
|
||||
msgid "New to Akismet"
|
||||
msgstr "Nowy użytkownik Akismeta"
|
||||
|
||||
#: class.akismet-admin.php:183
|
||||
msgid "On this page, you are able to set up the Akismet plugin."
|
||||
msgstr "Na tej stronie możesz ustawić wtyczkę Akismet."
|
||||
|
||||
#: class.akismet-admin.php:181 class.akismet-admin.php:192
|
||||
#: class.akismet-admin.php:203
|
||||
msgid "Akismet Setup"
|
||||
msgstr "Ustawienia Akismeta"
|
||||
|
||||
#: class.akismet-admin.php:179 class.akismet-admin.php:217
|
||||
#: class.akismet-admin.php:230
|
||||
msgid "Overview"
|
||||
msgstr "Przegląd"
|
||||
|
||||
#: class.akismet-admin.php:148
|
||||
msgid "Re-adding..."
|
||||
msgstr "Przywracanie..."
|
||||
|
||||
#: class.akismet-admin.php:147
|
||||
msgid "(undo)"
|
||||
msgstr "(cofnij)"
|
||||
|
||||
#: class.akismet-admin.php:146
|
||||
msgid "URL removed"
|
||||
msgstr "Adres URL został usunięty"
|
||||
|
||||
#: class.akismet-admin.php:145
|
||||
msgid "Removing..."
|
||||
msgstr "Usuwanie…"
|
||||
|
||||
#: class.akismet-admin.php:144
|
||||
msgid "Remove this URL"
|
||||
msgstr "Usuń ten adres URL"
|
||||
|
||||
#: class.akismet-admin.php:86 class.akismet-admin.php:1262
|
||||
msgid "Akismet"
|
||||
msgstr "Akismet"
|
||||
|
||||
#: class.akismet-admin.php:105 class.akismet-admin.php:241
|
||||
#: class.akismet-admin.php:710 views/config.php:66
|
||||
msgid "Settings"
|
||||
msgstr "Ustawienia"
|
||||
|
||||
#: class.akismet-admin.php:82
|
||||
msgid "Comment History"
|
||||
msgstr "Oś czasu komentarzy"
|
||||
BIN
wp-content/languages/plugins/bbpress-pl_PL.mo
Normal file
BIN
wp-content/languages/plugins/bbpress-pl_PL.mo
Normal file
Binary file not shown.
6092
wp-content/languages/plugins/bbpress-pl_PL.po.po
Normal file
6092
wp-content/languages/plugins/bbpress-pl_PL.po.po
Normal file
File diff suppressed because it is too large
Load Diff
BIN
wp-content/languages/plugins/flexible-checkout-fields-pl_PL.mo
Normal file
BIN
wp-content/languages/plugins/flexible-checkout-fields-pl_PL.mo
Normal file
Binary file not shown.
1165
wp-content/languages/plugins/flexible-checkout-fields-pl_PL.po
Normal file
1165
wp-content/languages/plugins/flexible-checkout-fields-pl_PL.po
Normal file
File diff suppressed because it is too large
Load Diff
BIN
wp-content/languages/plugins/really-simple-ssl-pl_PL.mo
Normal file
BIN
wp-content/languages/plugins/really-simple-ssl-pl_PL.mo
Normal file
Binary file not shown.
1501
wp-content/languages/plugins/really-simple-ssl-pl_PL.po
Normal file
1501
wp-content/languages/plugins/really-simple-ssl-pl_PL.po
Normal file
File diff suppressed because it is too large
Load Diff
BIN
wp-content/languages/plugins/tinymce-advanced-pl_PL.mo
Normal file
BIN
wp-content/languages/plugins/tinymce-advanced-pl_PL.mo
Normal file
Binary file not shown.
100
wp-content/languages/plugins/tinymce-advanced-pl_PL.po
Normal file
100
wp-content/languages/plugins/tinymce-advanced-pl_PL.po
Normal file
@@ -0,0 +1,100 @@
|
||||
# Translation of Plugins - Advanced Editor Tools - Stable (latest release) in Polish
|
||||
# This file is distributed under the same license as the Plugins - Advanced Editor Tools - Stable (latest release) package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-08-26 08:04:37+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);\n"
|
||||
"X-Generator: GlotPress/4.0.0-alpha.7\n"
|
||||
"Language: pl\n"
|
||||
"Project-Id-Version: Plugins - Advanced Editor Tools - Stable (latest release)\n"
|
||||
|
||||
#: tinymce-advanced.php:1171
|
||||
msgid "Settings"
|
||||
msgstr "Ustawienia główne"
|
||||
|
||||
#: tadv_admin.php:540
|
||||
msgid "Font sizes"
|
||||
msgstr "Rozmiar czcionki"
|
||||
|
||||
#: tadv_admin.php:510
|
||||
msgid "Options"
|
||||
msgstr "Ustawienia"
|
||||
|
||||
#: tadv_admin.php:36
|
||||
msgid "Default settings restored."
|
||||
msgstr "Domyślne ustawienia przywrócone."
|
||||
|
||||
#: tadv_admin.php:63
|
||||
msgid "Back to Editor Settings"
|
||||
msgstr "Powrót do Ustawień Edytora"
|
||||
|
||||
#: tadv_admin.php:57
|
||||
msgid "Verify"
|
||||
msgstr "Zweryfikuj"
|
||||
|
||||
#: tadv_admin.php:76
|
||||
msgid "Importing of settings failed."
|
||||
msgstr "Importowanie ustawień nie powiodło się."
|
||||
|
||||
#: tadv_admin.php:106
|
||||
msgid "ERROR: All toolbars are empty. Default settings loaded."
|
||||
msgstr "BŁĄD: Wszystkie paski narzędzi są puste. Domyślne ustawienia przywrócone."
|
||||
|
||||
#: tadv_admin.php:347
|
||||
msgid "Enable the editor menu."
|
||||
msgstr "Włącz menu edytora."
|
||||
|
||||
#: tadv_admin.php:464
|
||||
msgid "Unused Buttons"
|
||||
msgstr "Nieużywane przyciski"
|
||||
|
||||
#: tadv_admin.php:520
|
||||
msgid "List Style Options"
|
||||
msgstr "Ustawienia Stylu Listy"
|
||||
|
||||
#: tadv_admin.php:528
|
||||
msgid "Context Menu"
|
||||
msgstr "Menu Kontekstowe"
|
||||
|
||||
#: tadv_admin.php:607
|
||||
msgid "However it may behave unexpectedly in rare cases, so test it thoroughly before enabling it permanently."
|
||||
msgstr "Może to jednak zachowywać się nieprzewidzianie w rzadkich przypadkach, więc przetestuj tą opcję dogłębnie przed korzystaniem z niej na stałe."
|
||||
|
||||
#: tadv_admin.php:701
|
||||
msgid "Administration"
|
||||
msgstr "Administracja"
|
||||
|
||||
#: tadv_admin.php:746
|
||||
msgid "Restore Default Settings"
|
||||
msgstr "Przywróć Domyślne Ustawienia"
|
||||
|
||||
#: tadv_admin.php:752
|
||||
msgid "The [Toolbar toggle] button shows or hides the second, third, and forth button rows. It will only work when it is in the first row and there are buttons in the second row."
|
||||
msgstr "Przycisk [Przełącz widoczność paska narzędzi] pokazuje lub ukrywa drugi, trzeci i czwarty rząd przycisków. Będzie działać tylko jeśli jest w pierwszym rzędzie i istnieją przyciski w drugim."
|
||||
|
||||
#: tinymce-advanced.php:342
|
||||
msgid "Please upgrade your WordPress installation or download an <a href=\"%s\">older version of the plugin</a>."
|
||||
msgstr "Zaktualizuj swoją instalację WordPressa lub pobierz <a href=\"%s\">starszą wersję tej wtyczki</a>."
|
||||
|
||||
#: tadv_admin.php:136 tadv_admin.php:747
|
||||
msgid "Save Changes"
|
||||
msgstr "Zapisz zmiany"
|
||||
|
||||
#: tadv_admin.php:549
|
||||
msgid "Advanced Options"
|
||||
msgstr "Opcje zaawansowane"
|
||||
|
||||
#: tadv_admin.php:124
|
||||
msgid "Settings saved."
|
||||
msgstr "Ustawienia zostały zapisane."
|
||||
|
||||
#: tadv_admin.php:711
|
||||
msgid "Import Settings"
|
||||
msgstr "Ustawienia importu"
|
||||
|
||||
#: tadv_admin.php:710
|
||||
msgid "Export Settings"
|
||||
msgstr "Ustawienia eksportu"
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-07-29 08:06:25+0000","generator":"GlotPress\/4.0.0-alpha.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Link to":["Odno\u015bnik do"]}},"comment":{"reference":"packages\/woocommerce-blocks\/assets\/js\/editor-components\/page-selector\/index.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-07-29 08:06:25+0000","generator":"GlotPress\/4.0.0-alpha.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Edit selected tags":["Edytuj wybrane tagi"],"The last inner block will follow other content.":["Ostatni blok wewn\u0119trzny b\u0119dzie nast\u0119powa\u0142 po innych tre\u015bciach."],"The last inner block will be aligned vertically.":["Ostatni blok wewn\u0119trzny zostanie wyr\u00f3wnany w pionie."],"Align Last Block":["Wyr\u00f3wnaj ostatni blok"],"Product Tags":["Tagi produktu"],"Search results updated.":["Wyniki wyszukiwania zosta\u0142y zaktualizowane."],"%d item selected":["Wybrano %d pozycj\u0119","Wybrano %d pozycje","Wybrano %d pozycji"],"Search for items":["Szukaj pozycji"],"No results for %s":["Brak wynik\u00f3w wyszukiwania dla %s"],"No items found.":["Nie znaleziono \u017cadnego elementu."],"Clear all selected items":["Wyczy\u015b\u0107 wszystkie wybrane pozycje"],"Clear all":["Wyczy\u015b\u0107 wszystko"],"Remove %s":["Usu\u0144 %s"],"This block displays products from selected tags. In order to preview this you'll first need to create a product and assign it some tags.":["Ten blok wy\u015bwietla produkty z wybranych tag\u00f3w. Aby uzyska\u0107 ich podgl\u0105d utw\u00f3rz najpierw produkt i przypisz do niego tagi."],"This block displays products from selected tags. Select at least one tag to display its products.":["Ten blok wy\u015bwietla produkty na podstawie wybranych tag\u00f3w. Wybierz przynajmniej jeden tag, aby wy\u015bwietli\u0107 produkty."],"Display a grid of products from your selected tags.":["Wy\u015bwietl siatk\u0119 produkt\u00f3w na podstawie wybranych tag\u00f3w."],"Products by Tag":["Produkty wg tag\u00f3w"],"Showing Products by Tag block preview.":["Wy\u015bwietlanie pogl\u0105du bloku produkt\u00f3w wg tag\u00f3w"],"Done":["Gotowe"],"Order By":["Kolejno\u015b\u0107 wed\u0142ug"],"Layout":["Uk\u0142ad"],"Rows":["Wiersze"],"Columns":["Kolumny"],"Add to Cart button is hidden.":["Przycisk \"Dodaj do koszyka\" jest ukryty."],"Add to Cart button is visible.":["Przycisk \"Dodaj do koszyka\" jest widoczny."],"Add to Cart button":["Przycisk dodaj do koszyka"],"Product rating is hidden.":["Ocena produktu jest ukryta."],"Product rating is visible.":["Ocena produktu jest widoczna."],"Product rating":["Ocena produktu"],"Product price is hidden.":["Cena produktu jest ukryta."],"Product price is visible.":["Cena produktu jest widoczna."],"Product price":["Cena produktu"],"Product title is hidden.":["Tytu\u0142 produktu jest ukryty."],"Product title is visible.":["Tytu\u0142 produktu jest widoczny."],"Product title":["Tytu\u0142 produktu"],"Menu Order":["Kolejno\u015b\u0107 w menu"],"Title - alphabetical":["Tytu\u0142 - alfabetycznie"],"Sales - most first":["Sprzeda\u017c - najcz\u0119\u015bciej kupowane"],"Rating - highest first":["Ocena - najlepiej oceniane"],"Price - high to low":["Cena - od najwy\u017cszej"],"Price - low to high":["Cena - od najni\u017cszej"],"Newness - newest first":["Nowo\u015b\u0107 - od najnowszych"],"Order products by":["Sortuj produkty wg"],"All selected tags":["Wszystkie wybrane tagi"],"Any selected tags":["Dowolnie wybrane tagi"],"Pick at least two tags to use this setting.":["Wybierz przynajmniej 2 tagi, by skorzysta\u0107 z tej opcji."],"Display products matching":["Wy\u015bwietl pasuj\u0105ce produkty"],"Tag search results updated.":["Wyniki wyszukiwania tag\u00f3w zosta\u0142y zaktualizowane."],"%d tag selected":["%d wybrany tag","%d wybrane tagi","%d wybranych tag\u00f3w"],"Search for product tags":["Wyszukaj tagi produkt\u00f3w"],"Your store doesn't have any product tags.":["W twoim sklepie nie ma \u017cadnych tag\u00f3w produkt\u00f3w."],"Clear all product tags":["Wyczy\u015b\u0107 wszystkie tagi produkt\u00f3w"],"%1$d product tagged as %2$s":["%d produkt oznaczony tagiem %s","%d produkty oznaczone tagiem %s","%d produkt\u00f3w oznaczonych tagiem %s"],"Filter by stock status":["Filtruj wg stanu magazynowego"],"Product image":["Obrazek produktu"],"Content":["Tre\u015b\u0107"],"Cancel":["Anuluj"],"Product Tag":["Tag produktu"]}},"comment":{"reference":"packages\/woocommerce-blocks\/build\/product-tag.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-07-29 08:06:25+0000","generator":"GlotPress\/4.0.0-alpha.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Something went wrong. Please contact us to get assistance.":["Co\u015b posz\u0142o nie tak. By uzyska\u0107 wsparcie, skontaktuj si\u0119 z nami."]}},"comment":{"reference":"packages\/woocommerce-blocks\/assets\/js\/base\/context\/providers\/add-to-cart-form\/form-state\/index.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-07-29 08:06:25+0000","generator":"GlotPress\/4.0.0-alpha.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Subscription product":["Subskrypcja"],"Digital product":["Produkt wirtualny"],"Physical product":["Produkt fizyczny"],"Import sample products":["Importuj przyk\u0142adowe produkty"],"External product":["Produkt zewn\u0119trzny"],"Cancel":["Anuluj"],"Variable product":["Produkt z wariantami"],"Grouped product":["Grupowy produkt"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/6063.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-07-29 08:06:25+0000","generator":"GlotPress\/4.0.0-alpha.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Choose a product to display its add to cart button.":["Wybierz produkt, aby wy\u015bwietli\u0107 jego przycisk dodania do koszyka."]}},"comment":{"reference":"packages\/woocommerce-blocks\/assets\/js\/atomic\/blocks\/product-elements\/button\/edit.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-07-29 08:06:25+0000","generator":"GlotPress\/4.0.0-alpha.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"install":["zainstaluj"],"Close Print Label Banner.":["Zamknij baner drukowania etykiety. "],"Create shipping label":["Stw\u00f3rz etykiet\u0119 wysy\u0142kow\u0105"],"Print discounted shipping labels with a click.":["Drukuj etykiety wysy\u0142kowe w promocyjnych cenach za jednym klikni\u0119ciem."],"Shipping ":["Wysy\u0142ka"],"Plugin installed and activated":["Wtyczka zainstalowana i w\u0142\u0105czona"],"Shipment Tracking":["\u015aledzenie przesy\u0142ek"],"Toggle panel:":["Rozwi\u0144 panel:"],"By clicking \"Create shipping label\", {{wcsLink}}WooCommerce Shipping{{\/wcsLink}} will be installed and you agree to its {{tosLink}}Terms of Service{{\/tosLink}}.":["Klikaj\u0105c \"Stw\u00f3rz etykiet\u0119 wysy\u0142kow\u0105\" zostanie zainstalowana wtyczka {{wcsLink}}WooCommerce Shipping{{\/wcsLink}}, a ty zgadzasz si\u0119 na jej {{link}}Warunki korzystania z us\u0142ugi{{\/link}}."],"You've already installed WooCommerce Shipping. By clicking \"Create shipping label\", you agree to its {{tosLink}}Terms of Service{{\/tosLink}}.":["Masz ju\u017c obecnie zainstalowan\u0105 wtyczk\u0119 WooCommerce Shipping. Klikaj\u0105c \"Stw\u00f3rz etykiet\u0119 wysy\u0142kow\u0105\" zgadzasz si\u0119 na jej {{link}}Warunki korzystania z us\u0142ugi{{\/link}}."],"Unable to %s the plugin. Refresh the page and try again.":["Nie uda\u0142o si\u0119 %s wtyczki. Od\u015bwie\u017c stron\u0119 i spr\u00f3buj ponownie."],"start":["rozpocznij"],"set up":["skonfiguruj"],"activate":["w\u0142\u0105cz"],"I don't need this":["Nie potrzebuj\u0119 tego"],"Remind me later":["Przypomnij p\u00f3\u017aniej"],"With WooCommerce Shipping you can Print shipping labels from your WooCommerce dashboard at the lowest USPS rates.":["WooCommerce Shipping pozwala na drukowanie etykiet wysy\u0142kowych z kokpitu WooCommerce z najni\u017cszymi stawkami USPS."],"Are you sure?":["Czy na pewno?"],"Mutable settings should be accessed via data store.":["Dost\u0119p do zmiennych ustawie\u0144 powinien by\u0107 uzyskiwany przez magazyn danych."],"Shipping Label":["Etykieta wysy\u0142kowa"],"download":["pobierz","pobrania","pobra\u0144"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/print-shipping-label-banner.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-07-29 08:06:25+0000","generator":"GlotPress\/4.0.0-alpha.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Display the main product image":["Wy\u015bwietl g\u0142\u00f3wny obrazek produktu"],"Product Image":["Obrazek produktu"]}},"comment":{"reference":"packages\/woocommerce-blocks\/assets\/js\/atomic\/blocks\/product-elements\/image\/constants.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-07-29 08:06:25+0000","generator":"GlotPress\/4.0.0-alpha.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Fly your WordPress banner with this beauty! Deck out your office space or add it to your kids walls. This banner will spruce up any space it\u2019s hung!":["Tw\u00f3j baner WordPress mo\u017ce wygl\u0105da\u0107 w\u0142a\u015bnie tak! Udekoruj swoj\u0105 przestrze\u0144 biurow\u0105 lub pok\u00f3j dziecka. Ten baner upi\u0119kszy ka\u017cde miejsce!"],"Add to cart":["Dodaj do koszyka"]}},"comment":{"reference":"packages\/woocommerce-blocks\/assets\/js\/previews\/products.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-07-29 08:06:25+0000","generator":"GlotPress\/4.0.0-alpha.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"Filter by Product Category":["Filtruj wg kategorii produktu"],"Layout":["Uk\u0142ad"],"Filter by stock status":["Filtruj wg stanu magazynowego"],"Content":["Tre\u015b\u0107"]}},"comment":{"reference":"packages\/woocommerce-blocks\/assets\/js\/blocks\/product-new\/block.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-07-29 08:06:25+0000","generator":"GlotPress\/4.0.0-alpha.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"SKU:":["SKU:"]}},"comment":{"reference":"packages\/woocommerce-blocks\/build\/product-sku-frontend.js"}}
|
||||
@@ -0,0 +1 @@
|
||||
{"translation-revision-date":"2022-07-29 08:06:25+0000","generator":"GlotPress\/4.0.0-alpha.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);","lang":"pl"},"SKU:":["SKU:"]}},"comment":{"reference":"packages\/woocommerce-blocks\/build\/product-sku.js"}}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user