Skip to content

Commit 911c1ce

Browse files
committed
translate some strings and keys on the front page
1 parent b75d801 commit 911c1ce

File tree

1 file changed

+36
-36
lines changed

1 file changed

+36
-36
lines changed

specs/pl/index.html

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -281,9 +281,9 @@ <h3 class="feature-title">Mocne ciągi znakowe</h3>
281281
</p>
282282
</div>
283283

284-
<pre class="code toml" data-controller="snippet" data-snippet-copy="false"><code>str1 = "I'm a string."
285-
str2 = "You can \"quote\" me."
286-
str3 = "Name\tJos\u00E9\nLoc\tSF."</code></pre>
284+
<pre class="code toml" data-controller="snippet" data-snippet-copy="false"><code>cz1 = "Jestem ciągiem znaków"
285+
cz2 = "Możesz mnie \"zacytować\"."
286+
cz3 = "Name\tJos\u00E9\nLoc\tSF."</code></pre>
287287

288288
<p class="tour-text">
289289
<span class="font-bold">Wieloliniowe podstawowe ciągi znakowe</span> są otoczone
@@ -292,11 +292,11 @@ <h3 class="feature-title">Mocne ciągi znakowe</h3>
292292
kolejnej linii:
293293
</p>
294294

295-
<pre class="code toml" data-controller="snippet" data-snippet-copy="false"><code>str1 = """
295+
<pre class="code toml" data-controller="snippet" data-snippet-copy="false"><code>cz1 = """
296296
Wlazł kotek na płotek
297297
I mruga, i mruga."""
298298

299-
str2 = """\
299+
cz2 = """\
300300
Pchnąć w tę \
301301
łódź jeża lub \
302302
ośm skrzyń fig.\
@@ -315,9 +315,9 @@ <h3 class="feature-title">Mocne ciągi znakowe</h3>
315315
Nie ma tu ucieczek, więc widzisz to, co otrzymasz:
316316
</p>
317317

318-
<pre class="code toml" data-controller="snippet" data-snippet-copy="false"><code>path = 'C:\Users\nodejs\templates'
319-
path2 = '\\User\admin$\system32'
320-
quoted = 'Tom "Dubs" Preston-Werner'
318+
<pre class="code toml" data-controller="snippet" data-snippet-copy="false"><code>sciezka = 'C:\Users\nodejs\templates'
319+
sciezka2 = '\\User\admin$\system32'
320+
w_cudzyslowie = 'Tom "Dubs" Preston-Werner'
321321
regex = '<\i\c*\s*>'</code></pre>
322322

323323
<p class="tour-text">
@@ -328,8 +328,8 @@ <h3 class="feature-title">Mocne ciągi znakowe</h3>
328328
<pre
329329
class="code toml"
330330
data-controller="snippet" data-snippet-copy="false"
331-
><code>re = '''I [dw]on't need \d{2} apples'''
332-
lines = '''
331+
><code>wr = '''\d{2} telefon[uy]? Apple('a)?'''
332+
linie = '''
333333
Pierwsze łamanie linii
334334
jest usunięte z surowych
335335
ciągów znakowych. Pozostałe
@@ -349,10 +349,10 @@ <h3 class="feature-title">Liczby</h3>
349349
</div>
350350

351351
<pre class="code toml" data-controller="snippet" data-snippet-copy="false"><code># liczby całkowite
352-
int1 = +99
353-
int2 = 42
354-
int3 = 0
355-
int4 = -17
352+
lc1 = +99
353+
lc2 = 42
354+
lc3 = 0
355+
lc4 = -17
356356

357357
# szesnastkowe z prefiksem `0x`
358358
hex1 = 0xDEADBEEF
@@ -367,30 +367,30 @@ <h3 class="feature-title">Liczby</h3>
367367
bin1 = 0b11010110
368368

369369
# ułamki
370-
float1 = +1.0
371-
float2 = 3.1415
372-
float3 = -0.01
370+
lzp1 = +1.0
371+
lzp2 = 3.1415
372+
lzp3 = -0.01
373373

374374
# potęgi
375-
float4 = 5e+22
376-
float5 = 1e06
377-
float6 = -2E-2
375+
lzp4 = 5e+22
376+
lzp5 = 1e06
377+
lzp6 = -2E-2
378378

379379
# oba
380-
float7 = 6.626e-34
380+
lzp7 = 6.626e-34
381381

382382
# separatory
383-
float8 = 224_617.445_991_228
383+
lzp8 = 224_617.445_991_228
384384

385385
# nieskończoność
386-
infinite1 = inf # nieskończoność dodatnia
387-
infinite2 = +inf # nieskończoność dodatnia
388-
infinite3 = -inf # nieskończoność ujemna
386+
niesk1 = inf # nieskończoność dodatnia
387+
niesk2 = +inf # nieskończoność dodatnia
388+
niesk3 = -inf # nieskończoność ujemna
389389

390390
# nie-liczba
391-
not1 = nan
392-
not2 = +nan
393-
not3 = -nan </code></pre>
391+
nie1 = nan
392+
nie2 = +nan
393+
nie3 = -nan </code></pre>
394394
</section>
395395

396396
<section class="mt-12">
@@ -402,20 +402,20 @@ <h3 class="feature-title">Daty i czasy</h3>
402402
</div>
403403

404404
<pre class="code toml" data-controller="snippet" data-snippet-copy="false"><code># data i czas z przesunięciem
405-
odt1 = 1979-05-27T07:32:00Z
406-
odt2 = 1979-05-27T00:32:00-07:00
407-
odt3 = 1979-05-27T00:32:00.999999-07:00
405+
dcp1 = 1979-05-27T07:32:00Z
406+
dcp2 = 1979-05-27T00:32:00-07:00
407+
dcp3 = 1979-05-27T00:32:00.999999-07:00
408408

409409
# data i czas lokalny
410-
ldt1 = 1979-05-27T07:32:00
411-
ldt2 = 1979-05-27T00:32:00.999999
410+
dcl1 = 1979-05-27T07:32:00
411+
dcl2 = 1979-05-27T00:32:00.999999
412412

413413
# data lokalna
414-
ld1 = 1979-05-27
414+
dl1 = 1979-05-27
415415

416416
# czas lokalny
417-
lt1 = 07:32:00
418-
lt2 = 00:32:00.999999</code></pre>
417+
cl1 = 07:32:00
418+
cl2 = 00:32:00.999999</code></pre>
419419
</section>
420420
</div>
421421
</div>

0 commit comments

Comments
 (0)