Skip to content

Commit

Permalink
updated locale
Browse files Browse the repository at this point in the history
  • Loading branch information
TarantoolBot committed Dec 20, 2023
1 parent 165d2e9 commit 035e6fd
Show file tree
Hide file tree
Showing 8 changed files with 903 additions and 1,951 deletions.
6 changes: 1 addition & 5 deletions locale/en/book/connectors/community.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: Tarantool 3.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-12-20 12:25+0000\n"
"POT-Creation-Date: 2023-12-20 12:29+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../../doc/book/connectors/community.rst:9
msgid "C++"
msgstr ""

#: ../../doc/book/connectors/community.rst:4
msgid "Community-supported connectors"
msgstr ""
Expand Down
258 changes: 1 addition & 257 deletions locale/en/contributing/docs/build.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tarantool 3.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-12-20 12:25+0000\n"
"POT-Creation-Date: 2023-12-20 12:29+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand All @@ -19,259 +19,3 @@ msgstr ""
#: ../../doc/contributing/docs/build.rst:2
msgid "Building Tarantool Docs"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:2
msgid "How to build Tarantool documentation using Docker"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:4
msgid "See `Docker <https://www.docker.com>`_"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:7
msgid "Prepare for work"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:9
msgid "First of all, pull the image for building the docs."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:11
msgid "docker pull tarantool/doc-builder:fat-4.3"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:15
msgid "Next, initialize a Makefile for your OS:"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:17
msgid "docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"cmake .\""
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:22
msgid "Update submodules and generate documentation sources from code"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:24
msgid "A big part of documentation sources comes from several other projects, connected as Git submodules. To include their latest contents in the docs, run these two steps."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:28
msgid "Update the submodules:"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:30
msgid "git submodule update --init\n"
"git fetch --recurse-submodules\n"
"git submodule update --remote --checkout"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:36
msgid "This will initialize Git submodules and update them to the top of the stable branch in each repository."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:39
msgid "``git submodule update`` can sometimes fail, for example, when you have changes in submodules' files. You can reinitialize submodules to fix the problem."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:43
msgid "**Caution:** all untracked changes in submodules will be lost!"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:45
msgid "git submodule deinit -f .\n"
"git submodule update --init"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:51
msgid "Note that there's an option to update submodule repositories with a ``make`` command. However, it's intended for use in a CI environment and not on a local machine."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:54
msgid "docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make pull-modules\""
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:58
msgid "Build the submodules content:"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:60
msgid "docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make build-modules\""
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:64
msgid "This command will do two things:"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:66
msgid "Generate documentation source files from the source code"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:67
msgid "Copy these files to the right places under the ``./doc/`` directory."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:69
msgid "If you're editing submodules locally, repeat this step to view the updated results."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:72
msgid "Now you're ready to build and preview the documentation locally."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:75
msgid "Build and run the documentation on your machine"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:77
msgid "When editing the documentation, you can set up a live-reload server. It will build your documentation and serve it on `127.0.0.1:8000 <http://127.0.0.1:8000>`_. Every time you make changes in the source files, it will rebuild the docs and refresh the browser page."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:82
msgid "docker run --rm -it -p 8000:8000 -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make autobuild\""
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:86
msgid "First build will take some time. When it's done, open `127.0.0.1:8000 <http://127.0.0.1:8000>`_ in the browser. Now when you make changes, they will be rebuilt in a few seconds, and the browser tab with preview will reload automatically."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:91
msgid "You can also build the docs manually with ``make html``, and then serve them using python3 built-in server:"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:94
msgid "docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make html\"\n"
"docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make html-ru\"\n"
"python3 -m http.server --directory output/html"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:100
msgid "or python2 built-in server:"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:102
msgid "cd output/html\n"
"python -m SimpleHTTPServer"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:107
msgid "then go to `localhost:8000 <http://localhost:8000>`_ in your browser."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:109
msgid "There are other commands which can run in the ``tarantool/doc-builder`` container:"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:112
msgid "docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make html\"\n"
"docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make html-ru\"\n"
"docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make singlehtml\"\n"
"docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make singlehtml-ru\"\n"
"docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make pdf\"\n"
"docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make pdf-ru\"\n"
"docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make json\"\n"
"docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make json-ru\"\n"
"docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make epub\"\n"
"docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make epub-ru\"\n"
"docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make update-po\""
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:127
msgid "Linkcheck"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:129
msgid "There's a specific build mode which checks internal and external links instead of producing a document."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:131
msgid "docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make linkcheck\""
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:135
msgid "If you need to save the linkcheck's report in a file, you can use the following trick:"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:137
msgid "docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make linkcheck\" 2>&1 | tee linkcheck.log"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:141
msgid "Here ``2>&1`` redirects the ``stderr`` output to ``stdout``, and then ``tee`` both shows in on screen and writes to a file."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:146
msgid "Vale"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:148
msgid "Tarantool documentation uses the Vale linter for checking grammar, style, and word usage. Its configuration is placed in the ``vale.ini`` file located in the root project directory."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:151
msgid "To enable RST support in Vale, you need to install Sphinx. Then, you can enable Vale integration in your IDE, for example:"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:154
msgid "`VS Code <https://marketplace.visualstudio.com/items?itemName=errata-ai.vale-server>`_"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:155
msgid "`IntelliJ-based IDEs <https://plugins.jetbrains.com/plugin/16136-grazie-professional/docs/project-style-guides.html#vanilla-vale>`_"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:159
msgid "Localization"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:161
msgid "Terms:"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:163
msgid "**translation unit** (TU) is an atomic piece of text which can be translated. A paragraph, a list item, a heading, image's alt-text and so on."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:166
msgid "**translation source files** are the files with translation units in English only. They're located in ``locale/en``."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:169
msgid "**translation files** are the files which match original text to translated text. They're located in ``locale/ru``."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:172
msgid "To update the translation files, run the `make update-po` task:"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:174
msgid "docker run --rm -it -v $(pwd):/doc tarantool/doc-builder:fat-4.3 sh -c \"make update-po\""
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:178
msgid "Translate the strings in the updated files and then commit the changes."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:181
msgid "How to contribute"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:183
msgid "To contribute to documentation, use the `REST <http://docutils.sourceforge.net/docs/user/rst/quickstart.html>`_ format for drafting and submit your updates as a `pull request <https://help.github.com/articles/creating-a-pull-request>`_ via GitHub."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:189
msgid "To comply with the writing and formatting style, use the `guidelines <https://www.tarantool.io/en/doc/latest/contributing/docs/>`_ provided in the documentation, common sense and existing documents."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:193
msgid "Notes:"
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:195
msgid "If you suggest creating a new documentation section (a whole new page), it has to be saved to the relevant section at GitHub."
msgstr ""

#: ../../doc/contributing/docs/_includes/README.rst:198
msgid "If you want to contribute to localizing this documentation (for example, into Russian), add your translation strings to ``.po`` files stored in the corresponding locale directory (for example, ``/locale/ru/LC_MESSAGES/`` for Russian). See more about localizing with Sphinx at http://www.sphinx-doc.org/en/stable/intl.html."
msgstr ""
6 changes: 1 addition & 5 deletions locale/en/reference/reference_rock/index.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: Tarantool 3.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-12-20 12:25+0000\n"
"POT-Creation-Date: 2023-12-20 12:29+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../../doc/reference/reference_rock/index.rst:9
msgid "Module metrics"
msgstr ""

#: ../../doc/reference/reference_rock/index.rst:9
msgid "Module luatest"
msgstr ""
Expand Down
Loading

0 comments on commit 035e6fd

Please sign in to comment.