Skip to content

Commit 665923f

Browse files
gfbdrgngweblate
gfbdrgng
authored andcommitted
Translated using Weblate (Russian)
Currently translated at 85.4% (511 of 598 strings) Translated using Weblate (Russian) Currently translated at 100.0% (2 of 2 strings) Co-authored-by: gfbdrgng <[email protected]> Translate-URL: https://hosted.weblate.org/projects/commonwl/cwl-user-guide-sphinx/ru/ Translate-URL: https://hosted.weblate.org/projects/commonwl/user-guide/ru/ Translation: Common Workflow Language/CWL User Guide Translation: Common Workflow Language/CWL User Guide: Sphinx
1 parent 19073e1 commit 665923f

File tree

2 files changed

+91
-23
lines changed

2 files changed

+91
-23
lines changed

locales/ru/LC_MESSAGES/sphinx.po

+9-5
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,24 @@ msgstr ""
88
"Project-Id-Version: Common Workflow Language User Guide\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2023-01-25 14:33+0100\n"
11-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12-
"Last-Translator: Automatically generated\n"
13-
"Language-Team: none\n"
11+
"PO-Revision-Date: 2025-01-06 04:09+0000\n"
12+
"Last-Translator: gfbdrgng <[email protected]>\n"
13+
"Language-Team: Russian <https://hosted.weblate.org/projects/commonwl/"
14+
"cwl-user-guide-sphinx/ru/>\n"
1415
"Language: ru\n"
1516
"MIME-Version: 1.0\n"
1617
"Content-Type: text/plain; charset=UTF-8\n"
1718
"Content-Transfer-Encoding: 8bit\n"
19+
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
20+
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
21+
"X-Generator: Weblate 5.10-dev\n"
1822

1923
#: ../../src/_templates/sidebar-nav-bs.html:1
2024
#: d65b012160e9455eb4d2628279fffc42
2125
msgid "Main navigation"
22-
msgstr ""
26+
msgstr "Основная навигация"
2327

2428
#: ../../src/_templates/sidebar-nav-bs.html:3
2529
#: 4b3441eb77f448daa60718b7bfa862db
2630
msgid "Section Navigation"
27-
msgstr ""
31+
msgstr "Раздел Навигация"

locales/ru/LC_MESSAGES/user_guide.po

+82-18
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgstr ""
88
"Project-Id-Version: Common Workflow Language User Guide\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2023-01-25 14:33+0100\n"
11-
"PO-Revision-Date: 2025-01-06 04:00+0000\n"
11+
"PO-Revision-Date: 2025-01-07 06:07+0000\n"
1212
"Last-Translator: gfbdrgng <[email protected]>\n"
1313
"Language-Team: Russian <https://hosted.weblate.org/projects/commonwl/"
1414
"user-guide/ru/>\n"
@@ -4275,149 +4275,213 @@ msgstr "[Комментарии](#comments)"
42754275
#: ../../src/topics/yaml-guide.md:20
42764276
#: b8befec0d8684638aaa616a659e0100c
42774277
msgid "[Maps](#maps)"
4278-
msgstr ""
4278+
msgstr "[Карты](#maps)"
42794279

42804280
#: ../../src/topics/yaml-guide.md:21
42814281
#: 4ea28c6f8faf4cc1a5b29fdcf34c5fdc
42824282
msgid "[Arrays](#arrays)"
4283-
msgstr ""
4283+
msgstr "[Массивы](#arrays)"
42844284

42854285
#: ../../src/topics/yaml-guide.md:22
42864286
#: 36db4f26b5194e9da5c6a1ed8cb0ad04
42874287
msgid "[JSON Style](#json-style)"
4288-
msgstr ""
4288+
msgstr "[Стиль JSON](#json-style)"
42894289

42904290
#: ../../src/topics/yaml-guide.md:24
42914291
#: 98056c5cfd5640ad9de0679360797cc7
42924292
msgid "Key-Value Pairs"
4293-
msgstr ""
4293+
msgstr "Пары ключ-значение"
42944294

42954295
#: ../../src/topics/yaml-guide.md:26
42964296
#: cda73485875d4c8e9464679a20558616
42974297
msgid "Fundamentally, a file written in YAML consists of a set of _key-value pairs_. Each pair is written as `key: value`, where whitespace after the `:` is required. Key names in CWL files should not contain whitespace - [_camelCase_][camelCase] is used for multi-word key names that have special meaning in the CWL specification and underscored key names otherwise. For example:"
42984298
msgstr ""
4299+
"По сути, файл, написанный на языке YAML, состоит из набора пар _ключ-"
4300+
"значение_. Каждая пара записывается как `ключ: значение`, где пробелы после "
4301+
"`:` обязательны. Имена ключей в файлах CWL не должны содержать пробельных "
4302+
"символов - [_camelCase_][camelCase] используется для многословных имен "
4303+
"ключей, которые имеют особое значение в спецификации CWL, и подчеркивания в "
4304+
"других именах ключей. Например:"
42994305

43004306
#: ../../src/topics/yaml-guide.md:42
43014307
#: 98cae24919b74c088a5d89706aec581b
43024308
msgid "The YAML above defines four keys - `first_name`, `last_name`, `age_years`, and `home` - with their four respective values. Values can be character strings, numeric (integer, floating point, or scientific representation), Boolean (`true` or `false`), or more complex nested types (see below)."
43034309
msgstr ""
4310+
"В приведенном выше YAML определены четыре ключа - `first_name`, `last_name`, "
4311+
"`age_years` и `home` - и четыре соответствующих им значения. Значения могут "
4312+
"быть символьными строками, числовыми (целое число, число с плавающей точкой "
4313+
"или научное представление), булевыми (`true` или `false`) или более сложными "
4314+
"вложенными типами (см. ниже)."
43044315

43054316
#: ../../src/topics/yaml-guide.md:51
43064317
#: b4b0940b4b5743c09637b36b964202d0
43074318
msgid "Values may be wrapped in quotation marks, but be aware that this may change the way that they are interpreted i.e. `\"1234\"` will be treated as a character string , while `1234` will be treated as an integer. This distinction can be important, for example when describing parameters to a command: in CWL all parts of `baseCommand` must be strings so, if you want to specify a fixed numeric value to a command, make sure that you wrap that numeric value in quotes: `baseCommand: [echo, \"42\"]`."
43084319
msgstr ""
4320+
"Значения могут быть заключены в кавычки, но имейте в виду, что это может "
4321+
"изменить способ их интерпретации, например, `\"1234\"` будет рассматриваться "
4322+
"как символьная строка, а `1234` будет рассматриваться как целое число. Это "
4323+
"различие может быть важным, например, при описании параметров команды: в CWL "
4324+
"все части `baseCommand` должны быть строками, поэтому, если вы хотите "
4325+
"указать фиксированное числовое значение для команды, убедитесь, что вы "
4326+
"обернули это числовое значение в кавычки: `baseCommand: [echo, \"42\"]`."
43094327

43104328
#: ../../src/topics/yaml-guide.md:61
43114329
#: dcdaadc7dfff4ebc9fef0d5d05b34cc1
43124330
msgid "Comments"
4313-
msgstr ""
4331+
msgstr "Комментарии"
43144332

43154333
#: ../../src/topics/yaml-guide.md:63
43164334
#: 9ca3554d771d45998e88aaede525b227
43174335
msgid "You may use `#` to add comments to your CWL and parameter files. Any characters to the right of ` #` will be ignored by the program interpreting the YAML. For example:"
43184336
msgstr ""
4337+
"Вы можете использовать `#` для добавления комментариев к файлам CWL и "
4338+
"параметрам. Любые символы справа от `#` будут игнорироваться программой, "
4339+
"интерпретирующей YAML. Например:"
43194340

43204341
#: ../../src/topics/yaml-guide.md:76
43214342
#: 3fca839cede94cfd8e4f605c73ba699d
43224343
msgid "If there is anything on the line before the comment, be sure to add at least one space before the `#`!"
43234344
msgstr ""
4345+
"Если в строке перед комментарием что-то есть, не забудьте добавить хотя бы "
4346+
"один пробел перед `#`!"
43244347

43254348
#: ../../src/topics/yaml-guide.md:79
43264349
#: da34c635707345b2a5e85a2fcd30bbaf
43274350
msgid "Maps"
4328-
msgstr ""
4351+
msgstr "Карты"
43294352

43304353
#: ../../src/topics/yaml-guide.md:81
43314354
#: 3ded0f125249485c921994b6e6b93ac9
43324355
msgid "When describing a tool or workflow with CWL, it is usually necessary to construct more complex, nested representations. Referred to as _maps_, these hierarchical structures are described in YAML by providing additional key-value pairs as the value of any key. These pairs (sometimes referred to as \"children\") are written on new lines under the key to which they belong (the \"parent\"), and should be indented with two spaces (⇥tab characters are not allowed). For example:"
43334356
msgstr ""
4357+
"При описании инструмента или рабочего процесса с помощью CWL обычно "
4358+
"необходимо создавать более сложные, вложенные представления. Эти "
4359+
"иерархические структуры, называемые _картой_, описываются в YAML путем "
4360+
"предоставления дополнительных пар ключ-значение в качестве значения любого "
4361+
"ключа. Эти пары (иногда называемые \"дочерними\") записываются на новых "
4362+
"строках под ключом, к которому они относятся (\"родительским\"), и должны "
4363+
"быть отступлены двумя пробелами (символы ⇥tab не допускаются). Например:"
43344364

43354365
#: ../../src/topics/yaml-guide.md:104
43364366
#: 53ece35d309a4c8d99f1efb2122a7092
43374367
msgid "The YAML above illustrates how to build up complex nested object descriptions relatively quickly. The `inputs` map contains a single key, `example_flag`, which itself contains two keys, `type` and `inputBinding`, while one of these children, `inputBinding`, contains a further two key-value pairs (`position` and `prefix`). See the [Arrays](#arrays) section below for more information about providing multiple values/key-value pairs for a single key. For comparison with the example YAML above, here is a graphical representation of the `inputs` object it describes."
43384368
msgstr ""
4369+
"Приведенный выше YAML иллюстрирует, как можно относительно быстро создавать "
4370+
"сложные вложенные описания объектов. Карта `inputs` содержит один ключ, "
4371+
"`example_flag`, который сам содержит два ключа, `type` и `inputBinding`, а "
4372+
"один из этих дочерних элементов, `inputBinding`, содержит еще две пары ключ-"
4373+
"значение (`position` и `prefix`). Дополнительную информацию о предоставлении "
4374+
"нескольких значений/пар ключ-значение для одного ключа см. в разделе [Arrays]"
4375+
"(#arrays) ниже. Для сравнения с приведенным выше примером YAML здесь "
4376+
"показано графическое представление объекта `inputs`, который он описывает."
43394377

43404378
#: ../../src/topics/yaml-guide.md:127
43414379
#: d74321b111d84ae7a515f2f17dd39e23
43424380
msgid "Arrays"
4343-
msgstr ""
4381+
msgstr "Массивы"
43444382

43454383
#: ../../src/topics/yaml-guide.md:129
43464384
#: 7fc0bdf2489a44f2a29e71b86f7c0055
43474385
msgid "In certain circumstances, it is necessary to provide multiple values or objects for a single key. As we've already seen in the [Maps](#maps) section above, more than one key-value pair can be mapped to a single key. However, it is also possible to define multiple values for a key without having to provide a unique key for each value. We can achieve this with an _array_, where each value is defined on its own line and preceded by `-`. For example:"
43484386
msgstr ""
4387+
"В некоторых случаях необходимо предоставить несколько значений или объектов "
4388+
"для одного ключа. Как мы уже видели в разделе [Maps](#maps) выше, более "
4389+
"одной пары ключ-значение может быть сопоставлено одному ключу. Однако можно "
4390+
"также определить несколько значений для ключа без необходимости "
4391+
"предоставлять уникальный ключ для каждого значения. Этого можно добиться с "
4392+
"помощью _массива_, где каждое значение задается в отдельной строке и "
4393+
"предваряется символом `-`. Например:"
43494394

43504395
#: ../../src/topics/yaml-guide.md:146
43514396
#: fd64dd818ec64bb6aa9a11586a5747f6
43524397
msgid "and a more complex example combining maps and arrays:"
4353-
msgstr ""
4398+
msgstr "и более сложный пример, сочетающий карты и массивы:"
43544399

43554400
#: ../../src/topics/yaml-guide.md:167
43564401
#: 8c06e542dd4144fa83388d8142552c8d
43574402
msgid "JSON Style"
4358-
msgstr ""
4403+
msgstr "JSON Стиль"
43594404

43604405
#: ../../src/topics/yaml-guide.md:169
43614406
#: 87bafb845c714b109874f6137b84462d
43624407
msgid "YAML is based on [JavaScript Object Notation (JSON)][json]. Maps and arrays can also be defined in YAML using the native JSON syntax. For example:"
43634408
msgstr ""
4409+
"YAML основан на [JavaScript Object Notation (JSON)][json]. Карты и массивы "
4410+
"также могут быть определены в YAML с использованием собственного синтаксиса "
4411+
"JSON. Например:"
43644412

43654413
#: ../../src/topics/yaml-guide.md:177
43664414
#: 5ab9ddf613a540a2b8228e37600cc5dc
43674415
msgid "and:"
4368-
msgstr ""
4416+
msgstr "и:"
43694417

43704418
#: ../../src/topics/yaml-guide.md:184
43714419
#: fcd05b1ef31a4046946a2399c7fc5575
43724420
msgid "Native JSON can be useful in indicating where a field is intentionally left empty (such as `[]` for an empty array), as well as where it makes more sense for the values to be located on the same line (For example, when providing option flags and their values in a shell command). However, as the second example above shows, it can severely affect the readability of a YAML file, and should be used sparingly."
43734421
msgstr ""
4422+
"Родной JSON может быть полезен для указания полей, которые намеренно "
4423+
"оставлены пустыми (например, `[]` для пустого массива), а также в тех "
4424+
"случаях, когда значения имеет смысл располагать в одной строке (например, "
4425+
"при указании флагов опций и их значений в команде оболочки). Однако, как "
4426+
"видно из второго примера, это может сильно ухудшить читаемость YAML-файла, "
4427+
"поэтому использовать его следует осторожно."
43744428

43754429
#: ../../src/topics/yaml-guide.md:194
43764430
#: f4b8fc8236044fada420def13a02813d
43774431
msgid "Reference"
4378-
msgstr ""
4432+
msgstr "Ссылка"
43794433

43804434
#: ../../src/topics/yaml-guide.md:196
43814435
#: 859368c1f25c4a4aad57abfd046c63f5
43824436
msgid "The [Learn YAML in Y Minutes][yaml-y-mins] reference was very helpful for us while we wrote this guide, though it also covers features that are not valid in CWL."
43834437
msgstr ""
4438+
"Ссылка [Learn YAML in Y Minutes][yaml-y-mins] была очень полезна для нас при "
4439+
"написании этого руководства, хотя в ней также рассматриваются функции, "
4440+
"которые не применимы в CWL."
43844441

43854442
#: ../../src/tutorials.md:1
43864443
#: 2203c93f02ac4514a43508ecb98dfcc5
43874444
msgid "Tutorials"
4388-
msgstr ""
4445+
msgstr "Учебники"
43894446

43904447
#: ../../src/tutorials.md:5
43914448
#: 5d92464923c245818c070fbef102be89
43924449
msgid "This is a list of tutorials provided by the CWL community. Use the `Edit this page` link in the menu if you would like to add another tutorial to the list."
43934450
msgstr ""
4451+
"Это список учебников, предоставленных сообществом CWL. Если вы хотите "
4452+
"добавить в список еще один учебник, воспользуйтесь ссылкой `Редактировать "
4453+
"эту страницу` в меню."
43944454

43954455
#: ../../src/tutorials.md:7
43964456
#: 8a5cd557dab5456bb41cdc24af73b50c
43974457
msgid "Beginner Tutorials"
4398-
msgstr ""
4458+
msgstr "Учебники для начинающих"
43994459

44004460
#: ../../src/tutorials.md:9
44014461
#: 13d7e2e92e96432787c712cf6a595424
44024462
msgid "[Introduction to Workflows with Common Workflow Language: For Contributors.](https://carpentries-incubator.github.io/cwl-novice-tutorial/)"
44034463
msgstr ""
4464+
"[Введение в рабочие процессы с помощью Common Workflow Language: Для "
4465+
"авторов.](https://carpentries-incubator.github.io/cwl-novice-tutorial/)"
44044466

44054467
#: ../../src/tutorials.md:11
44064468
#: 0abdd85c9b964a4e89ba3d80a6c78d6f
44074469
msgid "Advanced Tutorials"
4408-
msgstr ""
4470+
msgstr "Продвинутые учебники"
44094471

44104472
#: ../../src/tutorials.md:13
44114473
#: 3cbf1f69a5514fd3bee90e68b201190f
4474+
#, fuzzy
44124475
msgid "[Typescript in CWL](https://github.com/umccr/cwl-ica/wiki/TypeScript)"
4413-
msgstr ""
4476+
msgstr "[Typescript in CWL](https://github.com/umccr/cwl-ica/wiki/TypeScript)"
44144477

44154478
#: ../../src/tutorials.md:15
44164479
#: 68c97a7065634d02956f3f5c1d4eeb9f
44174480
msgid "Bioinformatics Tutorials"
4418-
msgstr ""
4481+
msgstr "Учебники по биоинформатике"
44194482

44204483
#: ../../src/tutorials.md:17
44214484
#: a67c7e0eaf4e4d27b3e5db303333a088
4485+
#, fuzzy
44224486
msgid "[rnaseq with CWL](https://arvados.github.io/rnaseq-cwl-training/)"
4423-
msgstr ""
4487+
msgstr "[rnaseq with CWL](https://arvados.github.io/rnaseq-cwl-training/)"

0 commit comments

Comments
 (0)