Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 3805f7b

Browse files
Un1corN1kshorodilov
andcommitted
Apply suggestions from code review
Co-authored-by: Serhii Horodilov <sgorodil@gmail.com>
1 parent 72750d3 commit 3805f7b

File tree

1 file changed

+42
-42
lines changed

1 file changed

+42
-42
lines changed

src/_locales/ua/LC_MESSAGES/basics.po

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# SOME DESCRIPTIVE TITLE.
1+
# PYTHON/BASICS TRANSLATION
22
# Copyright (C) 2023, Python training course authors and contributors
33
# This file is distributed under the same license as the Python Training
44
# Course package.
5-
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
5+
# FIRST AUTHOR OLEKSANDR YEROMIN <unicorn.in.pants@gmail.com>, 2023.
66
#
77
#, fuzzy
88
msgid ""
@@ -20,7 +20,7 @@ msgstr ""
2020

2121
#: ../../src/basics/controlflow.txt:3
2222
msgid "Control Flow"
23-
msgstr ""
23+
msgstr "Керування виконанням"
2424

2525
#: ../../src/basics/datatypes.txt:3
2626
msgid "Data Types"
@@ -40,7 +40,7 @@ msgstr ""
4040
"Наприклад, **1984** може бути числом (``1984``), текстом (``\"1984"`` ) "
4141
"або подією чи датою. Тип даних описує можливі операції, дозволені для даних, "
4242
"як-от додавання чисел або конкатенація для тексту "
43-
"(наприклад, ``1 + 2 " "-> 3``, ``\"1\" + \"3 \" -> \"13\"``). "
43+
"(наприклад, ``1 + 2 -> 3``, ``\"1\" + \"3 \" -> \"13\"``)."
4444

4545
#: ../../src/basics/datatypes.txt:11
4646
msgid ""
@@ -482,95 +482,95 @@ msgstr "Результат"
482482

483483
#: ../../src/basics/stdtypes.txt:33
484484
msgid "``x + y``"
485-
msgstr "``x + y``"
485+
msgstr ""
486486

487487
#: ../../src/basics/stdtypes.txt:33
488488
msgid "sum of *x* and *y*"
489489
msgstr "сума *x* і *y*"
490490

491491
#: ../../src/basics/stdtypes.txt:35
492492
msgid "``x - y``"
493-
msgstr "``x - y``"
493+
msgstr ""
494494

495495
#: ../../src/basics/stdtypes.txt:35
496496
msgid "difference of *x* and *y*"
497497
msgstr "різниця між *x* і *y*"
498498

499499
#: ../../src/basics/stdtypes.txt:37
500500
msgid "``x * y``"
501-
msgstr "``x * y``"
501+
msgstr ""
502502

503503
#: ../../src/basics/stdtypes.txt:37
504504
msgid "product of *x* and *y*"
505505
msgstr "добуток *x* і *y*"
506506

507507
#: ../../src/basics/stdtypes.txt:39
508508
msgid "``x / y``"
509-
msgstr "``x / y``"
509+
msgstr ""
510510

511511
#: ../../src/basics/stdtypes.txt:39
512512
msgid "quotient of *x* and *y*"
513513
msgstr "частка *x* і *y*"
514514

515515
#: ../../src/basics/stdtypes.txt:41
516516
msgid "``x // y``"
517-
msgstr "``x // y``"
517+
msgstr ""
518518

519519
#: ../../src/basics/stdtypes.txt:41
520520
msgid "floored quotient of *x* and *y*"
521521
msgstr "цілочисельне ділення *x* і *y*"
522522

523523
#: ../../src/basics/stdtypes.txt:43
524524
msgid "``x % y``"
525-
msgstr "``x % y``"
525+
msgstr ""
526526

527527
#: ../../src/basics/stdtypes.txt:43
528528
msgid "remainder of ``x / y``"
529529
msgstr "залишок від ділення``x / y``"
530530

531531
#: ../../src/basics/stdtypes.txt:45
532532
msgid "``-x``"
533-
msgstr "``-x``"
533+
msgstr ""
534534

535535
#: ../../src/basics/stdtypes.txt:45
536536
msgid "*x* negated"
537-
msgstr "*x* заперечено"
537+
msgstr "*x* від'ємне"
538538

539539
#: ../../src/basics/stdtypes.txt:47
540540
msgid "``+x``"
541-
msgstr "``+x``"
541+
msgstr ""
542542

543543
#: ../../src/basics/stdtypes.txt:47
544544
msgid "*y* unchanged"
545545
msgstr "*y* без змін"
546546

547547
#: ../../src/basics/stdtypes.txt:49
548548
msgid "``abs(x)``"
549-
msgstr "``abs(x)``"
549+
msgstr ""
550550

551551
#: ../../src/basics/stdtypes.txt:49
552552
msgid "absolute value or magnitude of *x*"
553553
msgstr "абсолютне значення або величина *x*"
554554

555555
#: ../../src/basics/stdtypes.txt:51
556556
msgid "``int(x)``"
557-
msgstr "``int(x)``"
557+
msgstr ""
558558

559559
#: ../../src/basics/stdtypes.txt:51
560560
msgid "*x* converted to integer"
561561
msgstr "*x* перетворено на ціле число"
562562

563563
#: ../../src/basics/stdtypes.txt:53
564564
msgid "``float(x)``"
565-
msgstr "``float(x)``"
565+
msgstr ""
566566

567567
#: ../../src/basics/stdtypes.txt:53
568568
msgid "*x* converted to floating point"
569569
msgstr "*x* перетворено на число з плаваючою комою"
570570

571571
#: ../../src/basics/stdtypes.txt:55
572572
msgid "``complex(re, im)``"
573-
msgstr "``complex(re, im)``"
573+
msgstr ""
574574

575575
#: ../../src/basics/stdtypes.txt:55
576576
msgid ""
@@ -582,15 +582,15 @@ msgstr ""
582582

583583
#: ../../src/basics/stdtypes.txt:58
584584
msgid "``divmod(x, y)``"
585-
msgstr "``divmod(x, y)``"
585+
msgstr ""
586586

587587
#: ../../src/basics/stdtypes.txt:58
588588
msgid "the pair ``(x // y, x % y)``"
589589
msgstr "об'єднує ``(x // y, x % y)``"
590590

591591
#: ../../src/basics/stdtypes.txt:60
592592
msgid "``pow(x, y)`` ``x ** y``"
593-
msgstr "``pow(x, y)`` ``x ** y`"
593+
msgstr ""
594594

595595
#: ../../src/basics/stdtypes.txt:60
596596
msgid "*x* to the power *y*"
@@ -744,7 +744,7 @@ msgstr "Загальні операції"
744744

745745
#: ../../src/basics/stdtypes.txt:151
746746
msgid "``x in s`` ``x not in s``"
747-
msgstr "``x in s`` ``x not in s``"
747+
msgstr ""
748748

749749
#: ../../src/basics/stdtypes.txt:151
750750
msgid ""
@@ -756,31 +756,31 @@ msgstr ""
756756

757757
#: ../../src/basics/stdtypes.txt:154
758758
msgid "``s + t``"
759-
msgstr "``s + t``"
759+
msgstr ""
760760

761761
#: ../../src/basics/stdtypes.txt:154
762762
msgid "the concatenation of *s* and *t*"
763763
msgstr "конкатенація s і t"
764764

765765
#: ../../src/basics/stdtypes.txt:156
766766
msgid "``s * n``"
767-
msgstr "``s * n``"
767+
msgstr ""
768768

769769
#: ../../src/basics/stdtypes.txt:156
770770
msgid "equivalent to adding *s* to itself *n* times"
771771
msgstr "еквівалентно додаванню *s* до себе *n* разів"
772772

773773
#: ../../src/basics/stdtypes.txt:158
774774
msgid "``s[i]``"
775-
msgstr "``s[i]``"
775+
msgstr ""
776776

777777
#: ../../src/basics/stdtypes.txt:158
778778
msgid "*i*-th item of *s*, origin 0"
779779
msgstr "*i*-й елемент *s*, джерело 0"
780780

781781
#: ../../src/basics/stdtypes.txt:160
782782
msgid "``s[i:j]`` ``s[i:j:k]``"
783-
msgstr "``s[i:j]`` ``s[i:j:k]``"
783+
msgstr ""
784784

785785
#: ../../src/basics/stdtypes.txt:160
786786
msgid ""
@@ -792,39 +792,39 @@ msgstr ""
792792

793793
#: ../../src/basics/stdtypes.txt:163
794794
msgid "``len(s)``"
795-
msgstr "``len(s)``"
795+
msgstr ""
796796

797797
#: ../../src/basics/stdtypes.txt:163
798798
msgid "length of *s*"
799799
msgstr "довжина *s*"
800800

801801
#: ../../src/basics/stdtypes.txt:165
802802
msgid "``min(s)``"
803-
msgstr "``min(s)``"
803+
msgstr ""
804804

805805
#: ../../src/basics/stdtypes.txt:165
806806
msgid "smallest item of *s*"
807807
msgstr "найменший елемент *s*"
808808

809809
#: ../../src/basics/stdtypes.txt:167
810810
msgid "``max(s)``"
811-
msgstr "``max(s)``"
811+
msgstr ""
812812

813813
#: ../../src/basics/stdtypes.txt:167
814814
msgid "largest item of *s*"
815815
msgstr "найбільший елемент *s*"
816816

817817
#: ../../src/basics/stdtypes.txt:169
818818
msgid "``s.count(x)``"
819-
msgstr "``s.count(x)``"
819+
msgstr ""
820820

821821
#: ../../src/basics/stdtypes.txt:169
822822
msgid "total number of occurrences of *x* in *s*"
823823
msgstr "загальна кількість входжень *x* у *s*"
824824

825825
#: ../../src/basics/stdtypes.txt:171
826826
msgid "``s.index(x)`` ``s.index(x, i)`` ``s.index(x, i, j)``"
827-
msgstr "``s.index(x)`` ``s.index(x, i)`` ``s.index(x, i, j)``"
827+
msgstr ""
828828

829829
#: ../../src/basics/stdtypes.txt:171
830830
msgid ""
@@ -884,47 +884,47 @@ msgstr "Змінні типи послідовностей"
884884

885885
#: ../../src/basics/stdtypes.txt:203
886886
msgid "``s[i] = x``"
887-
msgstr "``s[i] = x``"
887+
msgstr ""
888888

889889
#: ../../src/basics/stdtypes.txt:203
890890
msgid "item *i* of *s* is replaced by *x*"
891891
msgstr "елемент *i* з *s* замінюється на *x*"
892892

893893
#: ../../src/basics/stdtypes.txt:205
894894
msgid "``s[i:j] = t``"
895-
msgstr "``s[i:j] = t``"
895+
msgstr ""
896896

897897
#: ../../src/basics/stdtypes.txt:205
898898
msgid "slice of *s* from *i* to *j* replaced by the contents of *t*"
899899
msgstr "фрагмент *s* від *i* до *j*, замінений вмістом *t*"
900900

901901
#: ../../src/basics/stdtypes.txt:208
902902
msgid "``del s[i:j]``"
903-
msgstr "``del s[i:j]``"
903+
msgstr ""
904904

905905
#: ../../src/basics/stdtypes.txt:208
906906
msgid "same as ``s[i:j] = []``"
907907
msgstr "те саме, що ``s[i:j] = []``"
908908

909909
#: ../../src/basics/stdtypes.txt:210
910910
msgid "``s[i:j:k] = t``"
911-
msgstr "``s[i:j:k] = t``"
911+
msgstr ""
912912

913913
#: ../../src/basics/stdtypes.txt:210
914914
msgid "the elements of *s* are replaced by those of *t*[#]_"
915915
msgstr "елементи *s* замінюються елементами *t*[#]_"
916916

917917
#: ../../src/basics/stdtypes.txt:212
918918
msgid "``del s[i:j:k]``"
919-
msgstr "``del s[i:j:k]``"
919+
msgstr ""
920920

921921
#: ../../src/basics/stdtypes.txt:212
922922
msgid "removes the elements of ``s[i:j:k]`` from the list"
923923
msgstr "видаляє елементи ``s[i:j:k]`` зі списку"
924924

925925
#: ../../src/basics/stdtypes.txt:214
926926
msgid "``s.append(x)``"
927-
msgstr "``s.append(x)``"
927+
msgstr ""
928928

929929
#: ../../src/basics/stdtypes.txt:214
930930
msgid ""
@@ -935,39 +935,39 @@ msgstr ""
935935

936936
#: ../../src/basics/stdtypes.txt:217
937937
msgid "``s.clear()``"
938-
msgstr "``s.clear()``"
938+
msgstr ""
939939

940940
#: ../../src/basics/stdtypes.txt:217
941941
msgid "removes all items from *s* (``del s[:]``)[#3.3]_"
942942
msgstr "видаляє всі елементи з *s* (``del s[:]``)[#3.3]_"
943943

944944
#: ../../src/basics/stdtypes.txt:219
945945
msgid "``s.copy()``"
946-
msgstr "``s.copy()``"
946+
msgstr ""
947947

948948
#: ../../src/basics/stdtypes.txt:219
949949
msgid "creates a shallow copy of *s* (``s[:]``)[#3.3]_"
950950
msgstr "створює поверхневу копію *s* (``s[:]``)[#3.3]_"
951951

952952
#: ../../src/basics/stdtypes.txt:221
953953
msgid "``s.extend(t)`` ``s += t``"
954-
msgstr "``s.extend(t)`` ``s += t``
954+
msgstr ""
955955

956956
#: ../../src/basics/stdtypes.txt:221
957957
msgid "extends *s* with the contents of *t*"
958958
msgstr "розширює *s* вмістом *t*"
959959

960960
#: ../../src/basics/stdtypes.txt:224
961961
msgid "``s.insert(i, x)``"
962-
msgstr "``s.insert(i, x)``"
962+
msgstr ""
963963

964964
#: ../../src/basics/stdtypes.txt:224
965965
msgid "inserts *x* into *s* at the index *i*; same as ``s[i:i] = [x]``"
966966
msgstr "вставляє *x* у *s* за індексом *i*; те саме, що ``s[i:i] = [x]``"
967967

968968
#: ../../src/basics/stdtypes.txt:227
969969
msgid "``s.pop()``, ``s.pop(i)``"
970-
msgstr "``s.pop()``, ``s.pop(i)``"
970+
msgstr ""
971971

972972
#: ../../src/basics/stdtypes.txt:227
973973
msgid ""
@@ -979,15 +979,15 @@ msgstr ""
979979

980980
#: ../../src/basics/stdtypes.txt:230
981981
msgid "``s.remove(x)``"
982-
msgstr "``s.remove(x)``"
982+
msgstr ""
983983

984984
#: ../../src/basics/stdtypes.txt:230
985985
msgid "remove the first item that is equal to *x* from *s*"
986986
msgstr "видалити перший елемент, який дорівнює *x*, із *s*"
987987

988988
#: ../../src/basics/stdtypes.txt:232
989989
msgid "``s.reverse()``"
990-
msgstr "``s.reverse()``"
990+
msgstr ""
991991

992992
#: ../../src/basics/stdtypes.txt:232
993993
msgid "reverses the items of *s* in place"

0 commit comments

Comments
 (0)