1
- # SOME DESCRIPTIVE TITLE.
1
+ # PYTHON/BASICS TRANSLATION
2
2
# Copyright (C) 2023, Python training course authors and contributors
3
3
# This file is distributed under the same license as the Python Training
4
4
# Course package.
5
- # FIRST AUTHOR <EMAIL@ADDRESS >, 2023.
5
+ # FIRST AUTHOR OLEKSANDR YEROMIN <unicorn.in.pants@gmail.com >, 2023.
6
6
#
7
7
#, fuzzy
8
8
msgid ""
@@ -20,7 +20,7 @@ msgstr ""
20
20
21
21
#: ../../src/basics/controlflow.txt:3
22
22
msgid "Control Flow"
23
- msgstr ""
23
+ msgstr "Керування виконанням "
24
24
25
25
#: ../../src/basics/datatypes.txt:3
26
26
msgid "Data Types"
@@ -40,7 +40,7 @@ msgstr ""
40
40
"Наприклад, **1984** може бути числом (``1984``), текстом (``\" 1984" `` ) "
41
41
"або подією чи датою. Тип даних описує можливі операції, дозволені для даних, "
42
42
"як-от додавання чисел або конкатенація для тексту "
43
- "(наприклад, ``1 + 2 " " -> 3``, ``\"1\" + \"3 \" -> \"13\"``). "
43
+ "(наприклад, ``1 + 2 -> 3``, ``\" 1\" + \" 3 \" -> \" 13\" ``)."
44
44
45
45
#: ../../src/basics/datatypes.txt:11
46
46
msgid ""
@@ -482,95 +482,95 @@ msgstr "Результат"
482
482
483
483
#: ../../src/basics/stdtypes.txt:33
484
484
msgid "``x + y``"
485
- msgstr "``x + y`` "
485
+ msgstr ""
486
486
487
487
#: ../../src/basics/stdtypes.txt:33
488
488
msgid "sum of *x* and *y*"
489
489
msgstr "сума *x* і *y*"
490
490
491
491
#: ../../src/basics/stdtypes.txt:35
492
492
msgid "``x - y``"
493
- msgstr "``x - y`` "
493
+ msgstr ""
494
494
495
495
#: ../../src/basics/stdtypes.txt:35
496
496
msgid "difference of *x* and *y*"
497
497
msgstr "різниця між *x* і *y*"
498
498
499
499
#: ../../src/basics/stdtypes.txt:37
500
500
msgid "``x * y``"
501
- msgstr "``x * y`` "
501
+ msgstr ""
502
502
503
503
#: ../../src/basics/stdtypes.txt:37
504
504
msgid "product of *x* and *y*"
505
505
msgstr "добуток *x* і *y*"
506
506
507
507
#: ../../src/basics/stdtypes.txt:39
508
508
msgid "``x / y``"
509
- msgstr "``x / y`` "
509
+ msgstr ""
510
510
511
511
#: ../../src/basics/stdtypes.txt:39
512
512
msgid "quotient of *x* and *y*"
513
513
msgstr "частка *x* і *y*"
514
514
515
515
#: ../../src/basics/stdtypes.txt:41
516
516
msgid "``x // y``"
517
- msgstr "``x // y`` "
517
+ msgstr ""
518
518
519
519
#: ../../src/basics/stdtypes.txt:41
520
520
msgid "floored quotient of *x* and *y*"
521
521
msgstr "цілочисельне ділення *x* і *y*"
522
522
523
523
#: ../../src/basics/stdtypes.txt:43
524
524
msgid "``x % y``"
525
- msgstr "``x % y`` "
525
+ msgstr ""
526
526
527
527
#: ../../src/basics/stdtypes.txt:43
528
528
msgid "remainder of ``x / y``"
529
529
msgstr "залишок від ділення``x / y``"
530
530
531
531
#: ../../src/basics/stdtypes.txt:45
532
532
msgid "``-x``"
533
- msgstr "``-x`` "
533
+ msgstr ""
534
534
535
535
#: ../../src/basics/stdtypes.txt:45
536
536
msgid "*x* negated"
537
- msgstr "*x* заперечено "
537
+ msgstr "*x* від'ємне "
538
538
539
539
#: ../../src/basics/stdtypes.txt:47
540
540
msgid "``+x``"
541
- msgstr "``+x`` "
541
+ msgstr ""
542
542
543
543
#: ../../src/basics/stdtypes.txt:47
544
544
msgid "*y* unchanged"
545
545
msgstr "*y* без змін"
546
546
547
547
#: ../../src/basics/stdtypes.txt:49
548
548
msgid "``abs(x)``"
549
- msgstr "``abs(x)`` "
549
+ msgstr ""
550
550
551
551
#: ../../src/basics/stdtypes.txt:49
552
552
msgid "absolute value or magnitude of *x*"
553
553
msgstr "абсолютне значення або величина *x*"
554
554
555
555
#: ../../src/basics/stdtypes.txt:51
556
556
msgid "``int(x)``"
557
- msgstr "``int(x)`` "
557
+ msgstr ""
558
558
559
559
#: ../../src/basics/stdtypes.txt:51
560
560
msgid "*x* converted to integer"
561
561
msgstr "*x* перетворено на ціле число"
562
562
563
563
#: ../../src/basics/stdtypes.txt:53
564
564
msgid "``float(x)``"
565
- msgstr "``float(x)`` "
565
+ msgstr ""
566
566
567
567
#: ../../src/basics/stdtypes.txt:53
568
568
msgid "*x* converted to floating point"
569
569
msgstr "*x* перетворено на число з плаваючою комою"
570
570
571
571
#: ../../src/basics/stdtypes.txt:55
572
572
msgid "``complex(re, im)``"
573
- msgstr "``complex(re, im)`` "
573
+ msgstr ""
574
574
575
575
#: ../../src/basics/stdtypes.txt:55
576
576
msgid ""
@@ -582,15 +582,15 @@ msgstr ""
582
582
583
583
#: ../../src/basics/stdtypes.txt:58
584
584
msgid "``divmod(x, y)``"
585
- msgstr "``divmod(x, y)`` "
585
+ msgstr ""
586
586
587
587
#: ../../src/basics/stdtypes.txt:58
588
588
msgid "the pair ``(x // y, x % y)``"
589
589
msgstr "об'єднує ``(x // y, x % y)``"
590
590
591
591
#: ../../src/basics/stdtypes.txt:60
592
592
msgid "``pow(x, y)`` ``x ** y``"
593
- msgstr "``pow(x, y)`` ``x ** y` "
593
+ msgstr ""
594
594
595
595
#: ../../src/basics/stdtypes.txt:60
596
596
msgid "*x* to the power *y*"
@@ -744,7 +744,7 @@ msgstr "Загальні операції"
744
744
745
745
#: ../../src/basics/stdtypes.txt:151
746
746
msgid "``x in s`` ``x not in s``"
747
- msgstr "``x in s`` ``x not in s`` "
747
+ msgstr ""
748
748
749
749
#: ../../src/basics/stdtypes.txt:151
750
750
msgid ""
@@ -756,31 +756,31 @@ msgstr ""
756
756
757
757
#: ../../src/basics/stdtypes.txt:154
758
758
msgid "``s + t``"
759
- msgstr "``s + t`` "
759
+ msgstr ""
760
760
761
761
#: ../../src/basics/stdtypes.txt:154
762
762
msgid "the concatenation of *s* and *t*"
763
763
msgstr "конкатенація s і t"
764
764
765
765
#: ../../src/basics/stdtypes.txt:156
766
766
msgid "``s * n``"
767
- msgstr "``s * n`` "
767
+ msgstr ""
768
768
769
769
#: ../../src/basics/stdtypes.txt:156
770
770
msgid "equivalent to adding *s* to itself *n* times"
771
771
msgstr "еквівалентно додаванню *s* до себе *n* разів"
772
772
773
773
#: ../../src/basics/stdtypes.txt:158
774
774
msgid "``s[i]``"
775
- msgstr "``s[i]`` "
775
+ msgstr ""
776
776
777
777
#: ../../src/basics/stdtypes.txt:158
778
778
msgid "*i*-th item of *s*, origin 0"
779
779
msgstr "*i*-й елемент *s*, джерело 0"
780
780
781
781
#: ../../src/basics/stdtypes.txt:160
782
782
msgid "``s[i:j]`` ``s[i:j:k]``"
783
- msgstr "``s[i:j]`` ``s[i:j:k]`` "
783
+ msgstr ""
784
784
785
785
#: ../../src/basics/stdtypes.txt:160
786
786
msgid ""
@@ -792,39 +792,39 @@ msgstr ""
792
792
793
793
#: ../../src/basics/stdtypes.txt:163
794
794
msgid "``len(s)``"
795
- msgstr "``len(s)`` "
795
+ msgstr ""
796
796
797
797
#: ../../src/basics/stdtypes.txt:163
798
798
msgid "length of *s*"
799
799
msgstr "довжина *s*"
800
800
801
801
#: ../../src/basics/stdtypes.txt:165
802
802
msgid "``min(s)``"
803
- msgstr "``min(s)`` "
803
+ msgstr ""
804
804
805
805
#: ../../src/basics/stdtypes.txt:165
806
806
msgid "smallest item of *s*"
807
807
msgstr "найменший елемент *s*"
808
808
809
809
#: ../../src/basics/stdtypes.txt:167
810
810
msgid "``max(s)``"
811
- msgstr "``max(s)`` "
811
+ msgstr ""
812
812
813
813
#: ../../src/basics/stdtypes.txt:167
814
814
msgid "largest item of *s*"
815
815
msgstr "найбільший елемент *s*"
816
816
817
817
#: ../../src/basics/stdtypes.txt:169
818
818
msgid "``s.count(x)``"
819
- msgstr "``s.count(x)`` "
819
+ msgstr ""
820
820
821
821
#: ../../src/basics/stdtypes.txt:169
822
822
msgid "total number of occurrences of *x* in *s*"
823
823
msgstr "загальна кількість входжень *x* у *s*"
824
824
825
825
#: ../../src/basics/stdtypes.txt:171
826
826
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 ""
828
828
829
829
#: ../../src/basics/stdtypes.txt:171
830
830
msgid ""
@@ -884,47 +884,47 @@ msgstr "Змінні типи послідовностей"
884
884
885
885
#: ../../src/basics/stdtypes.txt:203
886
886
msgid "``s[i] = x``"
887
- msgstr "``s[i] = x`` "
887
+ msgstr ""
888
888
889
889
#: ../../src/basics/stdtypes.txt:203
890
890
msgid "item *i* of *s* is replaced by *x*"
891
891
msgstr "елемент *i* з *s* замінюється на *x*"
892
892
893
893
#: ../../src/basics/stdtypes.txt:205
894
894
msgid "``s[i:j] = t``"
895
- msgstr "``s[i:j] = t`` "
895
+ msgstr ""
896
896
897
897
#: ../../src/basics/stdtypes.txt:205
898
898
msgid "slice of *s* from *i* to *j* replaced by the contents of *t*"
899
899
msgstr "фрагмент *s* від *i* до *j*, замінений вмістом *t*"
900
900
901
901
#: ../../src/basics/stdtypes.txt:208
902
902
msgid "``del s[i:j]``"
903
- msgstr "``del s[i:j]`` "
903
+ msgstr ""
904
904
905
905
#: ../../src/basics/stdtypes.txt:208
906
906
msgid "same as ``s[i:j] = []``"
907
907
msgstr "те саме, що ``s[i:j] = []``"
908
908
909
909
#: ../../src/basics/stdtypes.txt:210
910
910
msgid "``s[i:j:k] = t``"
911
- msgstr "``s[i:j:k] = t`` "
911
+ msgstr ""
912
912
913
913
#: ../../src/basics/stdtypes.txt:210
914
914
msgid "the elements of *s* are replaced by those of *t*[#]_"
915
915
msgstr "елементи *s* замінюються елементами *t*[#]_"
916
916
917
917
#: ../../src/basics/stdtypes.txt:212
918
918
msgid "``del s[i:j:k]``"
919
- msgstr "``del s[i:j:k]`` "
919
+ msgstr ""
920
920
921
921
#: ../../src/basics/stdtypes.txt:212
922
922
msgid "removes the elements of ``s[i:j:k]`` from the list"
923
923
msgstr "видаляє елементи ``s[i:j:k]`` зі списку"
924
924
925
925
#: ../../src/basics/stdtypes.txt:214
926
926
msgid "``s.append(x)``"
927
- msgstr "``s.append(x)`` "
927
+ msgstr ""
928
928
929
929
#: ../../src/basics/stdtypes.txt:214
930
930
msgid ""
@@ -935,39 +935,39 @@ msgstr ""
935
935
936
936
#: ../../src/basics/stdtypes.txt:217
937
937
msgid "``s.clear()``"
938
- msgstr "``s.clear()`` "
938
+ msgstr ""
939
939
940
940
#: ../../src/basics/stdtypes.txt:217
941
941
msgid "removes all items from *s* (``del s[:]``)[#3.3]_"
942
942
msgstr "видаляє всі елементи з *s* (``del s[:]``)[#3.3]_"
943
943
944
944
#: ../../src/basics/stdtypes.txt:219
945
945
msgid "``s.copy()``"
946
- msgstr "``s.copy()`` "
946
+ msgstr ""
947
947
948
948
#: ../../src/basics/stdtypes.txt:219
949
949
msgid "creates a shallow copy of *s* (``s[:]``)[#3.3]_"
950
950
msgstr "створює поверхневу копію *s* (``s[:]``)[#3.3]_"
951
951
952
952
#: ../../src/basics/stdtypes.txt:221
953
953
msgid "``s.extend(t)`` ``s += t``"
954
- msgstr "``s.extend(t)`` ``s += t``
954
+ msgstr ""
955
955
956
956
#: ../../src/basics/stdtypes.txt:221
957
957
msgid "extends *s* with the contents of *t*"
958
958
msgstr "розширює *s* вмістом *t*"
959
959
960
960
#: ../../src/basics/stdtypes.txt:224
961
961
msgid "``s.insert(i, x)``"
962
- msgstr "``s.insert(i, x)`` "
962
+ msgstr ""
963
963
964
964
#: ../../src/basics/stdtypes.txt:224
965
965
msgid "inserts *x* into *s* at the index *i*; same as ``s[i:i] = [x]``"
966
966
msgstr "вставляє *x* у *s* за індексом *i*; те саме, що ``s[i:i] = [x]``"
967
967
968
968
#: ../../src/basics/stdtypes.txt:227
969
969
msgid "``s.pop()``, ``s.pop(i)``"
970
- msgstr "``s.pop()``, ``s.pop(i)`` "
970
+ msgstr ""
971
971
972
972
#: ../../src/basics/stdtypes.txt:227
973
973
msgid ""
@@ -979,15 +979,15 @@ msgstr ""
979
979
980
980
#: ../../src/basics/stdtypes.txt:230
981
981
msgid "``s.remove(x)``"
982
- msgstr "``s.remove(x)`` "
982
+ msgstr ""
983
983
984
984
#: ../../src/basics/stdtypes.txt:230
985
985
msgid "remove the first item that is equal to *x* from *s*"
986
986
msgstr "видалити перший елемент, який дорівнює *x*, із *s*"
987
987
988
988
#: ../../src/basics/stdtypes.txt:232
989
989
msgid "``s.reverse()``"
990
- msgstr "``s.reverse()`` "
990
+ msgstr ""
991
991
992
992
#: ../../src/basics/stdtypes.txt:232
993
993
msgid "reverses the items of *s* in place"
0 commit comments