Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Polish translation added #5

Merged
merged 1 commit into from
May 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.