Skip to content

Commit 55a7234

Browse files
authored
Merge branch 'master' into copilot/create-docker-setup-guide
2 parents 811b9cd + a3d422b commit 55a7234

122 files changed

Lines changed: 1249 additions & 571 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

_translations/po/es/cookbook_deployment_docker-swarm-caddy.md.po

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
msgid ""
77
msgstr ""
88
"Project-Id-Version: PACKAGE VERSION\n"
9-
"POT-Creation-Date: 2026-01-02 23:54+0000\n"
9+
"POT-Creation-Date: 2026-03-19 11:10+0000\n"
1010
"PO-Revision-Date: 2026-01-02 23:54+0000\n"
1111
"Last-Translator: Automatically generated\n"
1212
"Language-Team: none\n"
@@ -512,13 +512,14 @@ msgid ""
512512
" # ... existing configuration ...\n"
513513
" \n"
514514
" db:\n"
515-
" image: postgres:15-alpine\n"
515+
" image: postgres:18-alpine\n"
516516
" environment:\n"
517517
" POSTGRES_DB: myapp\n"
518518
" POSTGRES_USER: myapp\n"
519519
" POSTGRES_PASSWORD_FILE: /run/secrets/db_password\n"
520+
" POSTGRES_INITDB_ARGS: \"--locale-provider=icu --icu-locale=und --encoding=UTF8\"\n"
520521
" volumes:\n"
521-
" - db_data:/var/lib/postgresql/data\n"
522+
" - db_data:/var/lib/postgresql\n"
522523
" networks:\n"
523524
" - reverse_proxy_public\n"
524525
" deploy:\n"

_translations/po/es/cookbook_deployment_docker-swarm-traefik.md.po

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
msgid ""
77
msgstr ""
88
"Project-Id-Version: PACKAGE VERSION\n"
9-
"POT-Creation-Date: 2026-01-02 23:54+0000\n"
9+
"POT-Creation-Date: 2026-03-19 11:10+0000\n"
1010
"PO-Revision-Date: 2026-01-02 23:54+0000\n"
1111
"Last-Translator: Automatically generated\n"
1212
"Language-Team: none\n"
@@ -313,13 +313,14 @@ msgid ""
313313
" # ... existing configuration ...\n"
314314
" \n"
315315
" db:\n"
316-
" image: postgres:15-alpine\n"
316+
" image: postgres:18-alpine\n"
317317
" environment:\n"
318318
" POSTGRES_DB: myapp\n"
319319
" POSTGRES_USER: myapp\n"
320320
" POSTGRES_PASSWORD_FILE: /run/secrets/db_password\n"
321+
" POSTGRES_INITDB_ARGS: \"--locale-provider=icu --icu-locale=und --encoding=UTF8\"\n"
321322
" volumes:\n"
322-
" - db_data:/var/lib/postgresql/data\n"
323+
" - db_data:/var/lib/postgresql\n"
323324
" networks:\n"
324325
" - reverse_proxy_public\n"
325326
" deploy:\n"

_translations/po/es/guide_runtime_handling-errors.md.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
msgid ""
77
msgstr ""
88
"Project-Id-Version: PACKAGE VERSION\n"
9-
"POT-Creation-Date: 2025-12-24 10:12+0000\n"
9+
"POT-Creation-Date: 2026-04-03 08:25+0000\n"
1010
"PO-Revision-Date: 2025-09-04 11:19+0500\n"
1111
"Last-Translator: Automatically generated\n"
1212
"Language-Team: none\n"
@@ -164,14 +164,14 @@ msgid ""
164164
"\n"
165165
"return [\n"
166166
" // ...\n"
167-
" ErrorHandler::class => static function (ResponseFactoryInterface $responseFactory, Injector $injector) {\n"
167+
" ExceptionResponder::class => static function (ResponseFactoryInterface $responseFactory, Injector $injector) {\n"
168168
" $exceptionMap = [\n"
169169
" // Status code with which the factory creates the response.\n"
170170
" MyNotFoundException::class => 404,\n"
171171
" // PHP callable that must return a `Psr\\Http\\Message\\ResponseInterface`.\n"
172172
" MyHttpException::class => static fn (MyHttpException $exception) => new MyResponse($exception),\n"
173173
" // ...\n"
174-
" ],\n"
174+
" ];\n"
175175
" \n"
176176
" return new ExceptionResponder($exceptionMap, $responseFactory, $injector);\n"
177177
" },\n"

_translations/po/es/guide_security_authorization.md.po

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
msgid ""
77
msgstr ""
88
"Project-Id-Version: PACKAGE VERSION\n"
9-
"POT-Creation-Date: 2026-03-01 17:44+0000\n"
9+
"POT-Creation-Date: 2026-04-06 22:12+0000\n"
1010
"PO-Revision-Date: 2025-09-04 11:19+0500\n"
1111
"Last-Translator: Automatically generated\n"
1212
"Language-Team: none\n"
@@ -16,6 +16,13 @@ msgstr ""
1616
"Content-Transfer-Encoding: 8bit\n"
1717
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
1818

19+
#. type: Fenced code block
20+
#: ../src/guide/databases/db-migrations.md
21+
#: ../src/guide/security/authorization.md
22+
#, no-wrap
23+
msgid "./yii migrate:up\n"
24+
msgstr ""
25+
1926
#. type: Title #
2027
#: ../src/guide/security/authorization.md
2128
#, no-wrap
@@ -312,12 +319,6 @@ msgstr ""
312319
msgid "Apply migrations:"
313320
msgstr ""
314321

315-
#. type: Fenced code block
316-
#: ../src/guide/security/authorization.md
317-
#, no-wrap
318-
msgid "APP_ENV=dev ./yii migrate:up\n"
319-
msgstr ""
320-
321322
#. type: Title ###
322323
#: ../src/guide/security/authorization.md
323324
#, no-wrap
@@ -479,7 +480,7 @@ msgstr ""
479480
#. type: Fenced code block
480481
#: ../src/guide/security/authorization.md
481482
#, no-wrap
482-
msgid "APP_ENV=dev ./yii rbac:init\n"
483+
msgid "./yii rbac:init\n"
483484
msgstr ""
484485

485486
#. type: Plain text
@@ -509,7 +510,7 @@ msgstr ""
509510

510511
#. type: Plain text
511512
#: ../src/guide/security/authorization.md
512-
msgid "Create new migration using `APP_ENV=dev ./yii migrate:create init_rbac` then implement creating a hierarchy:"
513+
msgid "Create new migration using `./yii migrate:create init_rbac` then implement creating a hierarchy:"
513514
msgstr ""
514515

515516
#. type: Fenced code block (php)
@@ -581,7 +582,7 @@ msgstr ""
581582

582583
#. type: Plain text
583584
#: ../src/guide/security/authorization.md
584-
msgid "You could apply migration by using `APP_ENV=dev ./yii migrate:up`."
585+
msgid "You could apply migration by using `./yii migrate:up`."
585586
msgstr ""
586587

587588
#. type: Title ##

_translations/po/es/guide_start_creating-project.md.po

Lines changed: 2 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
msgid ""
77
msgstr ""
88
"Project-Id-Version: PACKAGE VERSION\n"
9-
"POT-Creation-Date: 2026-01-31 08:44+0000\n"
9+
"POT-Creation-Date: 2026-04-06 22:12+0000\n"
1010
"PO-Revision-Date: 2025-09-04 11:19+0500\n"
1111
"Last-Translator: Automatically generated\n"
1212
"Language-Team: none\n"
@@ -106,33 +106,7 @@ msgstr ""
106106
#. type: Fenced code block (sh)
107107
#: ../src/guide/start/creating-project.md
108108
#, no-wrap
109-
msgid "APP_ENV=dev ./yii serve --port=80\n"
110-
msgstr ""
111-
112-
#. type: Plain text
113-
#: ../src/guide/start/creating-project.md
114-
msgid "For Windows Command Prompt users, run:"
115-
msgstr ""
116-
117-
#. type: Fenced code block (cmd)
118-
#: ../src/guide/start/creating-project.md
119-
#, no-wrap
120-
msgid ""
121-
"set APP_ENV=dev\n"
122-
"yii serve --port=80\n"
123-
msgstr ""
124-
125-
#. type: Plain text
126-
#: ../src/guide/start/creating-project.md
127-
msgid "For Windows PowerShell users, run:"
128-
msgstr ""
129-
130-
#. type: Fenced code block (powershell)
131-
#: ../src/guide/start/creating-project.md
132-
#, no-wrap
133-
msgid ""
134-
"$env:APP_ENV = \"dev\"\n"
135-
".\\yii serve --port=80\n"
109+
msgid "./yii serve --port=80\n"
136110
msgstr ""
137111

138112
#. type: Plain text

_translations/po/es/guide_start_databases.md.po

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
msgid ""
77
msgstr ""
88
"Project-Id-Version: PACKAGE VERSION\n"
9-
"POT-Creation-Date: 2026-02-25 03:25+0000\n"
9+
"POT-Creation-Date: 2026-03-19 11:10+0000\n"
1010
"PO-Revision-Date: 2025-09-04 11:19+0500\n"
1111
"Last-Translator: Automatically generated\n"
1212
"Language-Team: none\n"
@@ -144,6 +144,7 @@ msgid ""
144144
" POSTGRES_DB: app\n"
145145
" POSTGRES_PASSWORD: password\n"
146146
" POSTGRES_USER: user\n"
147+
" POSTGRES_INITDB_ARGS: \"--locale-provider=icu --icu-locale=und --encoding=UTF8\"\n"
147148
" volumes:\n"
148149
" - ../runtime/db:/var/lib/postgresql:rw\n"
149150
" ports:\n"

_translations/po/es/guide_start_workflow.md.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
msgid ""
77
msgstr ""
88
"Project-Id-Version: PACKAGE VERSION\n"
9-
"POT-Creation-Date: 2025-12-24 13:00+0000\n"
9+
"POT-Creation-Date: 2026-04-06 22:12+0000\n"
1010
"PO-Revision-Date: 2025-09-04 11:19+0500\n"
1111
"Last-Translator: Automatically generated\n"
1212
"Language-Team: none\n"
@@ -56,7 +56,7 @@ msgstr ""
5656

5757
#. type: Plain text
5858
#: ../src/guide/start/workflow.md
59-
msgid "In addition to the web application, you can access a console script via `APP_ENV=dev ./yii` or, in case of Docker, `make yii`. Use this script to run background and maintenance tasks for the application, which the [Console Application Section](../tutorial/console-applications.md) describes."
59+
msgid "In addition to the web application, you can access a console script via `./yii` or, in case of Docker, `make yii`. Use this script to run background and maintenance tasks for the application, which the [Console Application Section](../tutorial/console-applications.md) describes."
6060
msgstr ""
6161

6262
#. type: Title ##

_translations/po/es/guide_tutorial_console-applications.md.po

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
msgid ""
77
msgstr ""
88
"Project-Id-Version: PACKAGE VERSION\n"
9-
"POT-Creation-Date: 2026-01-26 08:41+0000\n"
9+
"POT-Creation-Date: 2026-03-30 08:11+0000\n"
1010
"PO-Revision-Date: 2025-09-04 11:19+0500\n"
1111
"Last-Translator: Automatically generated\n"
1212
"Language-Team: none\n"
@@ -27,6 +27,12 @@ msgstr ""
2727
msgid "References"
2828
msgstr "Referencias"
2929

30+
#. type: Title ##
31+
#: ../src/guide/index.md ../src/guide/tutorial/console-applications.md
32+
#, no-wrap
33+
msgid "Getting started"
34+
msgstr ""
35+
3036
#. type: Title #
3137
#: ../src/guide/tutorial/console-applications.md
3238
#, no-wrap
@@ -40,24 +46,29 @@ msgstr ""
4046

4147
#. type: Plain text
4248
#: ../src/guide/tutorial/console-applications.md
43-
msgid "To get support for console application in your project, get `yiisoft/yii-console` via composer:"
49+
msgid "If you're using [yiisoft/app](https://github.com/yiisoft/app) or [yiisoft/app-api](https://github.com/yiisoft/app-api), console support is already included. You can access the entry point as:"
4450
msgstr ""
4551

4652
#. type: Fenced code block
4753
#: ../src/guide/tutorial/console-applications.md
4854
#, no-wrap
49-
msgid "composer require yiisoft/yii-console\n"
55+
msgid "./yii\n"
5056
msgstr ""
5157

5258
#. type: Plain text
5359
#: ../src/guide/tutorial/console-applications.md
54-
msgid "After it's installed, you can access the entry point as"
60+
msgid "If you want a standalone console-only application, use the [yiisoft/app-console](https://github.com/yiisoft/app-console) project template:"
5561
msgstr ""
5662

57-
#. type: Fenced code block
63+
#. type: Fenced code block (sh)
5864
#: ../src/guide/tutorial/console-applications.md
5965
#, no-wrap
60-
msgid "./yii\n"
66+
msgid "composer create-project yiisoft/app-console your-project\n"
67+
msgstr ""
68+
69+
#. type: Plain text
70+
#: ../src/guide/tutorial/console-applications.md
71+
msgid "To add console support to an existing project from scratch, refer to the [yiisoft/yii-console package documentation](https://github.com/yiisoft/yii-console)."
6172
msgstr ""
6273

6374
#. type: Plain text
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Spanish translations for PACKAGE package
2+
# Copyright (C) 2026 Free Software Foundation, Inc.
3+
# This file is distributed under the same license as the PACKAGE package.
4+
# Automatically generated, 2026.
5+
#
6+
msgid ""
7+
msgstr ""
8+
"Project-Id-Version: PACKAGE VERSION\n"
9+
"POT-Creation-Date: 2026-04-05 07:15+0000\n"
10+
"PO-Revision-Date: 2026-04-05 07:15+0000\n"
11+
"Last-Translator: Automatically generated\n"
12+
"Language-Team: none\n"
13+
"Language: es\n"
14+
"MIME-Version: 1.0\n"
15+
"Content-Type: text/plain; charset=UTF-8\n"
16+
"Content-Transfer-Encoding: 8bit\n"
17+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
18+
19+
#. type: Title #
20+
#: ../src/internals/023-github-actions.md
21+
#, no-wrap
22+
msgid "023 — GitHub Actions"
23+
msgstr ""
24+
25+
#. type: Plain text
26+
#: ../src/internals/023-github-actions.md
27+
msgid "This document defines naming convention for the GitHub actions configuration files."
28+
msgstr ""
29+
30+
#. type: Title ##
31+
#: ../src/internals/023-github-actions.md
32+
#, no-wrap
33+
msgid "Inputs and Outputs"
34+
msgstr ""
35+
36+
#. type: Plain text
37+
#: ../src/internals/023-github-actions.md
38+
msgid "Input names and output names must use kebab-case format."
39+
msgstr ""
40+
41+
#. type: Plain text
42+
#: ../src/internals/023-github-actions.md
43+
msgid "For example:"
44+
msgstr ""
45+
46+
#. type: Fenced code block (yaml)
47+
#: ../src/internals/023-github-actions.md
48+
#, no-wrap
49+
msgid ""
50+
"inputs:\n"
51+
" my-input:\n"
52+
" description: 'My input'\n"
53+
msgstr ""
54+
55+
#. type: Title ##
56+
#: ../src/internals/023-github-actions.md
57+
#, no-wrap
58+
msgid "Secrets and Environment Variables"
59+
msgstr ""
60+
61+
#. type: Plain text
62+
#: ../src/internals/023-github-actions.md
63+
msgid "Secret names and environment variable names must use SCREAMING_SNAKE_CASE format."
64+
msgstr ""
65+
66+
#. type: Fenced code block (yaml)
67+
#: ../src/internals/023-github-actions.md
68+
#, no-wrap
69+
msgid ""
70+
"secrets:\n"
71+
" MY_SECRET:\n"
72+
" description: 'My secret'\n"
73+
msgstr ""
74+
75+
#. type: Fenced code block (yaml)
76+
#: ../src/internals/023-github-actions.md
77+
#, no-wrap
78+
msgid ""
79+
"env:\n"
80+
" MY_ENV_VAR: 1\n"
81+
msgstr ""

_translations/po/es/internals_index.md.po

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
msgid ""
77
msgstr ""
88
"Project-Id-Version: PACKAGE VERSION\n"
9-
"POT-Creation-Date: 2025-12-24 08:23+0000\n"
9+
"POT-Creation-Date: 2026-04-05 07:15+0000\n"
1010
"PO-Revision-Date: 2025-12-24 08:23+0000\n"
1111
"Last-Translator: Automatically generated\n"
1212
"Language-Team: none\n"
@@ -149,3 +149,8 @@ msgstr ""
149149
#: ../src/internals/index.md
150150
msgid "[022 — Config groups](022-config-groups.md) - Configuration group organization"
151151
msgstr ""
152+
153+
#. type: Bullet: '- '
154+
#: ../src/internals/index.md
155+
msgid "[023 - GitHub Actions](023-github-actions.md) - GitHub actions configuration"
156+
msgstr ""

0 commit comments

Comments
 (0)