Skip to content

Commit da132d5

Browse files
vjikgithub-actions[bot]
authored andcommitted
Update translation
1 parent abbf113 commit da132d5

File tree

476 files changed

+83208
-1939
lines changed

Some content is hidden

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

476 files changed

+83208
-1939
lines changed
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# Spanish translations for PACKAGE package
2+
# Copyright (C) 2025 Free Software Foundation, Inc.
3+
# This file is distributed under the same license as the PACKAGE package.
4+
# Automatically generated, 2025.
5+
#
6+
msgid ""
7+
msgstr ""
8+
"Project-Id-Version: PACKAGE VERSION\n"
9+
"POT-Creation-Date: 2025-10-19 11:34+0000\n"
10+
"PO-Revision-Date: 2025-10-19 11:34+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+
#: ../../cookbook/en/README.md
21+
#, no-wrap
22+
msgid "Yii3 community cookbook"
23+
msgstr ""
24+
25+
#. type: Plain text
26+
#: ../../cookbook/en/README.md
27+
msgid "Yii3 Community Cookbook is an OpenSource book full of tips and tricks about the [Yii3](https://www.yiiframework.com/) PHP framework."
28+
msgstr ""
29+
30+
#. type: Bullet: '- '
31+
#: ../../cookbook/en/README.md
32+
msgid "The Yii community creates the cookbook."
33+
msgstr ""
34+
35+
#. type: Bullet: '- '
36+
#: ../../cookbook/en/README.md
37+
msgid "Yii core team members curate and edit it."
38+
msgstr ""
39+
40+
#. type: Plain text
41+
#: ../../cookbook/en/README.md
42+
msgid "Feel free to pull-request your own writings. Team members will review it, give feedback and merge the best possible way."
43+
msgstr ""
44+
45+
#. type: Plain text
46+
#: ../../cookbook/en/README.md
47+
#, fuzzy
48+
#| msgid "We release this guide under the [Terms of Yii Documentation](https://www.yiiframework.com/license#docs)."
49+
msgid "This book conforms to the [Terms of Yii Documentation](https://www.yiiframework.com/license#docs)."
50+
msgstr "Esta guía se publica bajo los [Términos de documentación de Yii](https://www.yiiframework.com/license#docs))."
51+
52+
#. type: Bullet: '- '
53+
#: ../../cookbook/en/README.md
54+
#, fuzzy
55+
#| msgid "[Packages](structure/package.md) +"
56+
msgid "[Preface](preface.md)"
57+
msgstr "[Paquetes](structure/package.md)"
58+
59+
#. type: Bullet: '- '
60+
#: ../../cookbook/en/README.md
61+
msgid "[Structuring code by use-case with vertical slices](organizing-code/structuring-by-use-case-with-vertical-slices.md)"
62+
msgstr ""
63+
64+
#. type: Bullet: '- '
65+
#: ../../cookbook/en/README.md
66+
msgid "[Making HTTP requests](making-http-requests.md)"
67+
msgstr ""
68+
69+
#. type: Bullet: '- '
70+
#: ../../cookbook/en/README.md
71+
msgid "[Disabling CSRF protection](disabling-csrf-protection.md)"
72+
msgstr ""
73+
74+
#. type: Bullet: '- '
75+
#: ../../cookbook/en/README.md
76+
#, fuzzy
77+
#| msgid "[Authentication](security/authentication.md) +"
78+
msgid "[Sentry integration](sentry-integration.md)"
79+
msgstr "[Autenticación](security/authentication.md)"
80+
81+
#. type: Bullet: '- '
82+
#: ../../cookbook/en/README.md
83+
msgid "[Configuring webservers](configuring-webservers/general.md)"
84+
msgstr ""
85+
86+
#. type: Bullet: '- '
87+
#: ../../cookbook/en/README.md
88+
msgid "[Deploying to Docker Swarm](deployment/docker-swarm.md)"
89+
msgstr ""
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# Spanish translations for PACKAGE package
2+
# Copyright (C) 2025 Free Software Foundation, Inc.
3+
# This file is distributed under the same license as the PACKAGE package.
4+
# Automatically generated, 2025.
5+
#
6+
msgid ""
7+
msgstr ""
8+
"Project-Id-Version: PACKAGE VERSION\n"
9+
"POT-Creation-Date: 2025-09-05 14:50+0500\n"
10+
"PO-Revision-Date: 2025-09-05 14:50+0500\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+
#: en/configuring-webservers/apache.md
21+
#, no-wrap
22+
msgid "Configuring web servers: Apache"
23+
msgstr ""
24+
25+
#. type: Plain text
26+
#: en/configuring-webservers/apache.md
27+
msgid "Use the following configuration in Apache's `httpd.conf` file or within a virtual host configuration. Note that you should replace `path/to/app/public` with the actual path for `app/public`."
28+
msgstr ""
29+
30+
#. type: Fenced code block (apacheconfig)
31+
#: en/configuring-webservers/apache.md
32+
#, no-wrap
33+
msgid ""
34+
"# Set document root to be \"app/public\"\n"
35+
"DocumentRoot \"path/to/app/public\"\n"
36+
"\n"
37+
"<Directory \"path/to/app/public\">\n"
38+
" # use mod_rewrite for pretty URL support\n"
39+
" RewriteEngine on\n"
40+
" \n"
41+
" # if $showScriptName is false in UrlManager, do not allow accessing URLs with script name\n"
42+
" RewriteRule ^index.php/ - [L,R=404]\n"
43+
" \n"
44+
" # If a directory or a file exists, use the request directly\n"
45+
" RewriteCond %{REQUEST_FILENAME} !-f\n"
46+
" RewriteCond %{REQUEST_FILENAME} !-d\n"
47+
" \n"
48+
" # Otherwise forward the request to index.php\n"
49+
" RewriteRule . index.php\n"
50+
" \n"
51+
" SetEnv APP_ENV dev\n"
52+
"\n"
53+
" # ...other settings...\n"
54+
"</Directory>\n"
55+
msgstr ""
56+
57+
#. type: Plain text
58+
#: en/configuring-webservers/apache.md
59+
msgid "In case you have `AllowOverride All` you can add `.htaccess` file with the following configuration instead of using `httpd.conf`:"
60+
msgstr ""
61+
62+
#. type: Fenced code block (apacheconfig)
63+
#: en/configuring-webservers/apache.md
64+
#, no-wrap
65+
msgid ""
66+
"# use mod_rewrite for pretty URL support\n"
67+
"RewriteEngine on\n"
68+
"\n"
69+
"# if $showScriptName is false in UrlManager, do not allow accessing URLs with script name\n"
70+
"RewriteRule ^index.php/ - [L,R=404]\n"
71+
"\n"
72+
"# If a directory or a file exists, use the request directly\n"
73+
"RewriteCond %{REQUEST_FILENAME} !-f\n"
74+
"RewriteCond %{REQUEST_FILENAME} !-d\n"
75+
"\n"
76+
"# Otherwise forward the request to index.php\n"
77+
"RewriteRule . index.php\n"
78+
"\n"
79+
"SetEnv APP_ENV dev\n"
80+
"\n"
81+
"# ...other settings...\n"
82+
msgstr ""
83+
84+
#. type: Plain text
85+
#: en/configuring-webservers/apache.md
86+
msgid "In the above, note the usage of `SetEnv`. Since the Yii3 application template is using environment variables, this is a possible place to set them. In production environment remember to set `APP_ENV` to `prod`."
87+
msgstr ""
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# Spanish translations for PACKAGE package
2+
# Copyright (C) 2025 Free Software Foundation, Inc.
3+
# This file is distributed under the same license as the PACKAGE package.
4+
# Automatically generated, 2025.
5+
#
6+
msgid ""
7+
msgstr ""
8+
"Project-Id-Version: PACKAGE VERSION\n"
9+
"POT-Creation-Date: 2025-09-05 14:50+0500\n"
10+
"PO-Revision-Date: 2025-09-05 14:50+0500\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+
#: en/configuring-webservers/general.md
21+
#, no-wrap
22+
msgid "Configuring web servers: General"
23+
msgstr ""
24+
25+
#. type: Plain text
26+
#: en/configuring-webservers/general.md
27+
msgid "On a production server, if you don't use Docker, configure your web server to serve only the application's public files. Point the document root of your web server to the `app/public` folder."
28+
msgstr ""
29+
30+
#. type: Plain text
31+
#: en/configuring-webservers/general.md
32+
#, no-wrap
33+
msgid ""
34+
"> [!IMPORTANT]\n"
35+
"> If you're running your Yii application behind a reverse proxy, you might need to configure\n"
36+
"> [Trusted proxies and headers](../../../guide/en/security/trusted-request.md).\n"
37+
msgstr ""
38+
39+
#. type: Title ##
40+
#: en/configuring-webservers/general.md
41+
#, no-wrap
42+
msgid "Specific server configurations"
43+
msgstr ""
44+
45+
#. type: Bullet: '- '
46+
#: en/configuring-webservers/general.md
47+
#, fuzzy
48+
#| msgid "[Logging](runtime/logging.md) +"
49+
msgid "[Nginx](nginx.md)"
50+
msgstr "[Registros (logs)](runtime/logging.md)"
51+
52+
#. type: Bullet: '- '
53+
#: en/configuring-webservers/general.md
54+
msgid "[Apache](apache.md)"
55+
msgstr ""
56+
57+
#. type: Bullet: '- '
58+
#: en/configuring-webservers/general.md
59+
msgid "[Lighttpd](lighttpd.md)"
60+
msgstr ""
61+
62+
#. type: Bullet: '- '
63+
#: en/configuring-webservers/general.md
64+
msgid "[Nginx Unit](nginx-unit.md)"
65+
msgstr ""
66+
67+
#. type: Bullet: '- '
68+
#: en/configuring-webservers/general.md
69+
msgid "[IIS](iis.md)"
70+
msgstr ""
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Spanish translations for PACKAGE package
2+
# Copyright (C) 2025 Free Software Foundation, Inc.
3+
# This file is distributed under the same license as the PACKAGE package.
4+
# Automatically generated, 2025.
5+
#
6+
msgid ""
7+
msgstr ""
8+
"Project-Id-Version: PACKAGE VERSION\n"
9+
"POT-Creation-Date: 2025-09-05 14:50+0500\n"
10+
"PO-Revision-Date: 2025-09-05 14:50+0500\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+
#: en/configuring-webservers/iis.md
21+
#, no-wrap
22+
msgid "Configuring web servers: IIS"
23+
msgstr ""
24+
25+
#. type: Plain text
26+
#: en/configuring-webservers/iis.md
27+
msgid "When you use [IIS](https://www.iis.net/), host the application in a virtual host (Website) where the document root points to the `path/to/app/public` folder and configure the website to run PHP. In that `public` folder, place a file named `web.config` at `path/to/app/public/web.config`. Use the following content:"
28+
msgstr ""
29+
30+
#. type: Fenced code block (xml)
31+
#: en/configuring-webservers/iis.md
32+
#, no-wrap
33+
msgid ""
34+
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
35+
"<configuration>\n"
36+
" <system.webServer>\n"
37+
" <directoryBrowse enabled=\"false\" />\n"
38+
" <rewrite>\n"
39+
" <rules>\n"
40+
" <rule name=\"Hide Yii Index\" stopProcessing=\"true\">\n"
41+
" <match url=\".\" ignoreCase=\"false\" />\n"
42+
" <conditions>\n"
43+
" <add input=\"{REQUEST_FILENAME}\" matchType=\"IsFile\" \n"
44+
" ignoreCase=\"false\" negate=\"true\" />\n"
45+
" <add input=\"{REQUEST_FILENAME}\" matchType=\"IsDirectory\" \n"
46+
" ignoreCase=\"false\" negate=\"true\" />\n"
47+
" </conditions>\n"
48+
" <action type=\"Rewrite\" url=\"index.php\" appendQueryString=\"true\" />\n"
49+
" </rule> \n"
50+
" </rules>\n"
51+
" </rewrite>\n"
52+
" </system.webServer>\n"
53+
"</configuration>\n"
54+
msgstr ""
55+
56+
#. type: Plain text
57+
#: en/configuring-webservers/iis.md
58+
msgid "Also, the following list of Microsoft's official resources could be useful to configure PHP on IIS:"
59+
msgstr ""
60+
61+
#. type: Bullet: '1. '
62+
#: en/configuring-webservers/iis.md
63+
msgid "[How to set up your first IIS website](https://support.microsoft.com/en-us/help/323972/how-to-set-up-your-first-iis-web-site)"
64+
msgstr ""
65+
66+
#. type: Bullet: '2. '
67+
#: en/configuring-webservers/iis.md
68+
msgid "[Configure a PHP Website on IIS](https://docs.microsoft.com/en-us/iis/application-frameworks/scenario-build-a-php-website-on-iis/configure-a-php-website-on-iis)"
69+
msgstr ""
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Spanish translations for PACKAGE package
2+
# Copyright (C) 2025 Free Software Foundation, Inc.
3+
# This file is distributed under the same license as the PACKAGE package.
4+
# Automatically generated, 2025.
5+
#
6+
msgid ""
7+
msgstr ""
8+
"Project-Id-Version: PACKAGE VERSION\n"
9+
"POT-Creation-Date: 2025-09-05 14:50+0500\n"
10+
"PO-Revision-Date: 2025-09-05 14:50+0500\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+
#: en/configuring-webservers/lighttpd.md
21+
#, no-wrap
22+
msgid "Configuring web servers: lighttpd"
23+
msgstr ""
24+
25+
#. type: Plain text
26+
#: en/configuring-webservers/lighttpd.md
27+
#, no-wrap
28+
msgid "To use [lighttpd](https://www.lighttpd.net/) >= 1.4.24, put `index.php` in the web root and add the following to the configuration:\n"
29+
msgstr ""
30+
31+
#. type: Fenced code block
32+
#: en/configuring-webservers/lighttpd.md
33+
#, no-wrap
34+
msgid "url.rewrite-if-not-file = (\"(.*)\" => \"/index.php/$0\")\n"
35+
msgstr ""

0 commit comments

Comments
 (0)