Skip to content

Commit

Permalink
Merge pull request CheckiO-Missions#5 from marrry/master
Browse files Browse the repository at this point in the history
Polish translation added
  • Loading branch information
oduvan authored May 16, 2021
2 parents 9461790 + 2935cbd commit 2bb0376
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
37 changes: 37 additions & 0 deletions translations/pl/info/task_description.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!-- Describe task in general -->

<p>
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.
</p>

<p style="text-align: center;">
<img title="example" src="{{MEDIA}}example.png" alt="example" style="max-height: 83px"/>
</p>
<!-- Explain input and output values -->
<p>
<strong>Wejście: </strong> {% if interpreter.slug == "js-node" %}Array{% else %}List{% endif %}.
</p>

<p>
<strong>Wyjście: </strong> {% if interpreter.slug == "js-node" %}Array{% else %}Iterable{% endif %}.
</p>


<!-- Give some usage examples -->
<div class="for_info_only">
<p>
<strong>Przykład:</strong>
</p>

{% if interpreter.slug == "js-node" %}
<pre class="brush: javascript">replaceFirst([1, 2, 3, 4]) == [2, 3, 4, 1]
replaceFirst([1]) == [1]
replaceFirst([]) == []
</pre>
{% else %}
<pre class="brush: python">replace_first([1, 2, 3, 4]) == [2, 3, 4, 1]
replace_first([1]) == [1]
</pre>
{% endif %}
</div>

1 change: 1 addition & 0 deletions translations/pl/info/task_short_description.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Przesuń pierwszy element na koniec.

0 comments on commit 2bb0376

Please sign in to comment.