Skip to content

Commit c28bd74

Browse files
Fix tutorial_performance-tuning.md.po file (#261)
1 parent 1a94f4e commit c28bd74

File tree

1 file changed

+13
-54
lines changed

1 file changed

+13
-54
lines changed

_translations/guide/po/ru/tutorial_performance-tuning.md.po

Lines changed: 13 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
msgid ""
77
msgstr ""
88
"Project-Id-Version: PACKAGE VERSION\n"
9-
"POT-Creation-Date: 2025-09-11 10:15+0500\n"
10-
"PO-Revision-Date: 2025-09-04 11:19+0500\n"
9+
"POT-Creation-Date: 2025-09-12 04:50+0000\n"
10+
"PO-Revision-Date: 2025-09-12 04:50+0000\n"
1111
"Last-Translator: Automatically generated\n"
1212
"Language-Team: none\n"
1313
"Language: ru\n"
@@ -29,9 +29,10 @@ msgstr ""
2929

3030
#. type: Title ##
3131
#: ../../guide/en/tutorial/performance-tuning.md
32-
#, no-wrap
32+
#, fuzzy, no-wrap
33+
#| msgid "Resolving aliases <span id=\"resolving-aliases\"></span>"
3334
msgid "Optimizing your PHP Environment <span id=\"optimizing-php\"></span>"
34-
msgstr ""
35+
msgstr "Разрешение псевдонимов <span id=\"resolving-aliases\"></span>"
3536

3637
#. type: Plain text
3738
#: ../../guide/en/tutorial/performance-tuning.md
@@ -66,9 +67,9 @@ msgstr ""
6667
#. type: Title ##
6768
#: ../../guide/en/tutorial/performance-tuning.md
6869
#, fuzzy, no-wrap
69-
#| msgid "Defining aliases <span id=\"defining-aliases\"></span>"
70+
#| msgid "DI container <span id=\"di-container\"></span>"
7071
msgid "Optimizing your code <span id=\"optimizing-code\"></span>"
71-
msgstr "Определение псевдонимов <span id=\"defining-aliases\"></span>"
72+
msgstr "Контейнер внедрения зависимостей <span id=\"di-container\"></span>"
7273

7374
#. type: Plain text
7475
#: ../../guide/en/tutorial/performance-tuning.md
@@ -108,51 +109,9 @@ msgstr ""
108109
#. type: Title ##
109110
#: ../../guide/en/tutorial/performance-tuning.md
110111
#, fuzzy, no-wrap
111-
#| msgid "Defining aliases <span id=\"defining-aliases\"></span>"
112-
msgid "Optimizing your code <span id=\"optimizing-code\"></span>"
113-
msgstr "Определение псевдонимов <span id=\"defining-aliases\"></span>"
114-
115-
#. type: Plain text
116-
#: en/tutorial/performance-tuning.md
117-
msgid "Beyond environment configuration, there are code-level optimizations that can improve your application's performance:"
118-
msgstr ""
119-
120-
#. type: Bullet: '- '
121-
#: en/tutorial/performance-tuning.md
122-
msgid "Look out for [algorithm complexity](https://en.wikipedia.org/wiki/Time_complexity). Especially give attention to `foreach` within `foreach` loops but look out for using [heavy PHP functions](https://stackoverflow.com/questions/2473989/list-of-big-o-for-php-functions) in loops as well."
123-
msgstr ""
124-
125-
#. type: Bullet: '- '
126-
#: en/tutorial/performance-tuning.md
127-
msgid "[Speeding up array_merge()](https://www.exakat.io/speeding-up-array_merge/)"
128-
msgstr ""
129-
130-
#. type: Bullet: '- '
131-
#: en/tutorial/performance-tuning.md
132-
msgid "[Move that foreach() inside the method](https://www.exakat.io/move-that-foreach-inside-the-method/)"
133-
msgstr ""
134-
135-
#. type: Bullet: '- '
136-
#: en/tutorial/performance-tuning.md
137-
msgid "[Array, classes and anonymous classes memory usage](https://www.exakat.io/array-classes-and-anonymous-memory-usage/)"
138-
msgstr ""
139-
140-
#. type: Bullet: '- '
141-
#: en/tutorial/performance-tuning.md
142-
msgid "Use fully qualified function names with leading backslashes to optimize opcache performance. When calling [certain global functions](https://github.com/php/php-src/blob/944b6b6bbd6f05ad905f5f4ad07445792bee4027/Zend/zend_compile.c#L4291-L4353) from within a namespace, PHP first searches in the current namespace before falling back to the global namespace. Adding a leading backslash (e.g., `\\count()` instead of `count()`) tells PHP to directly use the global function, avoiding the namespace lookup and improving opcache efficiency. This optimization is best implemented automatically using tools like [PHP-CS-Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer) with the `native_function_invocation` rule."
143-
msgstr ""
144-
145-
#. type: Plain text
146-
#: en/tutorial/performance-tuning.md
147-
msgid "The above optimizations would give you a significant performance boost only if the code in question is executed frequently. That is usually the case for big loops or batch processing."
148-
msgstr ""
149-
150-
#. type: Title ##
151-
#: en/tutorial/performance-tuning.md
152-
#, fuzzy, no-wrap
153-
#| msgid "Injecting dependencies <span id=\"injecting-dependencies\"></span>"
112+
#| msgid "Resolving aliases <span id=\"resolving-aliases\"></span>"
154113
msgid "Using caching techniques <span id=\"using-caching-techniques\"></span>"
155-
msgstr "Внедрение зависимостей <span id=\"injecting-dependencies\"></span>"
114+
msgstr "Разрешение псевдонимов <span id=\"resolving-aliases\"></span>"
156115

157116
#. type: Plain text
158117
#: ../../guide/en/tutorial/performance-tuning.md
@@ -162,9 +121,9 @@ msgstr ""
162121
#. type: Title ##
163122
#: ../../guide/en/tutorial/performance-tuning.md
164123
#, fuzzy, no-wrap
165-
#| msgid "Configuring container <span id=\"configuring-container\"></span>"
124+
#| msgid "Resolving aliases <span id=\"resolving-aliases\"></span>"
166125
msgid "Optimizing session storage <span id=\"optimizing-session-storage\"></span>"
167-
msgstr "Конфигурирование контейнера <span id=\"configuring-container\"></span>"
126+
msgstr "Разрешение псевдонимов <span id=\"resolving-aliases\"></span>"
168127

169128
#. type: Plain text
170129
#: ../../guide/en/tutorial/performance-tuning.md
@@ -237,9 +196,9 @@ msgstr ""
237196
#. type: Title ##
238197
#: ../../guide/en/tutorial/performance-tuning.md
239198
#, fuzzy, no-wrap
240-
#| msgid "Defining aliases <span id=\"defining-aliases\"></span>"
199+
#| msgid "Resolving aliases <span id=\"resolving-aliases\"></span>"
241200
msgid "Optimizing composer autoloader <span id=\"optimizing-autoloader\"></span>"
242-
msgstr "Определение псевдонимов <span id=\"defining-aliases\"></span>"
201+
msgstr "Разрешение псевдонимов <span id=\"resolving-aliases\"></span>"
243202

244203
#. type: Plain text
245204
#: ../../guide/en/tutorial/performance-tuning.md

0 commit comments

Comments
 (0)