Skip to content

Commit 8530b8f

Browse files
authored
Fix a translation style issue (#2342)
Fix a major style issue Co-authored-by: patiencedaur <patiencedaur@gmail.com>
1 parent 51ac590 commit 8530b8f

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

doc/book/app_server/creating_app.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ Now let's prepare the test environment. As planned, we write a Lua application
636636
initialize Tarantool's database module, initialize our game, call the game loop
637637
and simulate a couple of player requests.
638638

639-
To launch our microservice, we put both ``pokemon.lua`` module and ``game.lua``
639+
To launch our microservice, we put both the ``pokemon.lua`` module and the ``game.lua``
640640
application in the current directory, install all external modules, and launch
641641
the Tarantool instance running our ``game.lua`` application (this example is for
642642
Ubuntu):

doc/dev_guide/c_style_guide.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ the code move too far to the right, and makes it hard to read on a
4646
more than 3 levels of indentation, you're screwed anyway, and should fix
4747
your program.
4848

49-
In short, 8-char indents make things easier to read, and have the added
49+
8-char indents make things easier to read and have the added
5050
benefit of warning you when you're nesting your functions too deep.
5151
Heed that warning.
5252

locale/ru/LC_MESSAGES/book/app_server/creating_app.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1246,14 +1246,14 @@ msgstr ""
12461246
" вызвать цикл игры и смоделировать пару запросов от игроков."
12471247

12481248
msgid ""
1249-
"To launch our microservice, we put both ``pokemon.lua`` module and "
1249+
"To launch our microservice, we put both the ``pokemon.lua`` module and the "
12501250
"``game.lua`` application in the current directory, install all external "
12511251
"modules, and launch the Tarantool instance running our ``game.lua`` "
12521252
"application (this example is for Ubuntu):"
12531253
msgstr ""
12541254
"Чтобы запустить микросервис, поместим модуль ``pokemon.lua`` и приложение "
12551255
"``game.lua`` в текущую директорию, установим все внешние модули и запустим "
1256-
"экземпляр Tarantool с работающим приложением ``game.lua`` (это пример для "
1256+
"экземпляр Tarantool с работающим приложением ``game.lua`` (это пример для "
12571257
"Ubuntu):"
12581258

12591259
msgid ""

locale/ru/LC_MESSAGES/dev_guide/c_style_guide.po

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,11 @@ msgstr ""
9595
"вам следует переписать этот участок."
9696

9797
msgid ""
98-
"In short, 8-char indents make things easier to read, and have the added "
99-
"benefit of warning you when you're nesting your functions too deep. Heed "
100-
"that warning."
98+
"8-char indents make things easier to read and have the added benefit of "
99+
"warning you when you're nesting your functions too deep. Heed that warning."
101100
msgstr ""
102-
"Короче говоря, отступы в 8 символов облегчают чтение кода, да еще и "
103-
"предупреждают, когда вы слишком глубоко встраиваете свои "
104-
"функции. Прислушайтесь к этому."
101+
"Отступы в 8 символов облегчают чтение кода. Кроме того, по ним можно понять,"
102+
" когда у вас становится слишком много вложенных функций."
105103

106104
msgid ""
107105
"The preferred way to ease multiple indentation levels in a switch statement "

0 commit comments

Comments
 (0)