From 2935cbddfa18ee89ad1a681ea3bb16ade6c5fc64 Mon Sep 17 00:00:00 2001 From: marrry Date: Sun, 3 Jan 2021 19:33:17 +0100 Subject: [PATCH] Polish translation added --- translations/pl/info/task_description.html | 37 +++++++++++++++++++ .../pl/info/task_short_description.html | 1 + 2 files changed, 38 insertions(+) create mode 100644 translations/pl/info/task_description.html create mode 100644 translations/pl/info/task_short_description.html diff --git a/translations/pl/info/task_description.html b/translations/pl/info/task_description.html new file mode 100644 index 0000000..f3976ec --- /dev/null +++ b/translations/pl/info/task_description.html @@ -0,0 +1,37 @@ + + +

+ Przesuń pierwszy element z danej {% if interpreter.slug == "js-node" %}tablicy (array){% else %}listy{% endif %} na jej koniec. Pusta {% if interpreter.slug == "js-node" %}tablica{% else %}lista{% endif %} lub {% if interpreter.slug == "js-node" %}tablica{% else %}lista{% endif %} zawierająca tylko jeden element powinna pozostać niezmieniona. +

+ +

+ example +

+ +

+ Wejście: {% if interpreter.slug == "js-node" %}Array{% else %}List{% endif %}. +

+ +

+ Wyjście: {% if interpreter.slug == "js-node" %}Array{% else %}Iterable{% endif %}. +

+ + + +
+

+ Przykład: +

+ +{% if interpreter.slug == "js-node" %} +
replaceFirst([1, 2, 3, 4]) == [2, 3, 4, 1]
+replaceFirst([1]) == [1]
+replaceFirst([]) == []
+
+{% else %} +
replace_first([1, 2, 3, 4]) == [2, 3, 4, 1]
+replace_first([1]) == [1]
+
+{% endif %} +
+ diff --git a/translations/pl/info/task_short_description.html b/translations/pl/info/task_short_description.html new file mode 100644 index 0000000..5104bee --- /dev/null +++ b/translations/pl/info/task_short_description.html @@ -0,0 +1 @@ +Przesuń pierwszy element na koniec. \ No newline at end of file