Skip to content

Commit a586b0a

Browse files
vjikgithub-actions[bot]
authored andcommitted
Update translation
1 parent 0d98c40 commit a586b0a

File tree

475 files changed

+83911
-1935
lines changed

Some content is hidden

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

475 files changed

+83911
-1935
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: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
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 ""
28+
"Use the following configuration in Apache's `httpd.conf` file or within a "
29+
"virtual host configuration. Note that you should replace `path/to/app/"
30+
"public` with the actual path for `app/public`."
31+
msgstr ""
32+
33+
#. type: Fenced code block (apacheconfig)
34+
#: en/configuring-webservers/apache.md
35+
#, no-wrap
36+
msgid ""
37+
"# Set document root to be \"app/public\"\n"
38+
"DocumentRoot \"path/to/app/public\"\n"
39+
"\n"
40+
"<Directory \"path/to/app/public\">\n"
41+
" # use mod_rewrite for pretty URL support\n"
42+
" RewriteEngine on\n"
43+
" \n"
44+
" # if $showScriptName is false in UrlManager, do not allow accessing URLs with script name\n"
45+
" RewriteRule ^index.php/ - [L,R=404]\n"
46+
" \n"
47+
" # If a directory or a file exists, use the request directly\n"
48+
" RewriteCond %{REQUEST_FILENAME} !-f\n"
49+
" RewriteCond %{REQUEST_FILENAME} !-d\n"
50+
" \n"
51+
" # Otherwise forward the request to index.php\n"
52+
" RewriteRule . index.php\n"
53+
" \n"
54+
" SetEnv APP_ENV dev\n"
55+
"\n"
56+
" # ...other settings...\n"
57+
"</Directory>\n"
58+
msgstr ""
59+
60+
#. type: Plain text
61+
#: en/configuring-webservers/apache.md
62+
msgid ""
63+
"In case you have `AllowOverride All` you can add `.htaccess` file with the "
64+
"following configuration instead of using `httpd.conf`:"
65+
msgstr ""
66+
67+
#. type: Fenced code block (apacheconfig)
68+
#: en/configuring-webservers/apache.md
69+
#, no-wrap
70+
msgid ""
71+
"# use mod_rewrite for pretty URL support\n"
72+
"RewriteEngine on\n"
73+
"\n"
74+
"# if $showScriptName is false in UrlManager, do not allow accessing URLs with script name\n"
75+
"RewriteRule ^index.php/ - [L,R=404]\n"
76+
"\n"
77+
"# If a directory or a file exists, use the request directly\n"
78+
"RewriteCond %{REQUEST_FILENAME} !-f\n"
79+
"RewriteCond %{REQUEST_FILENAME} !-d\n"
80+
"\n"
81+
"# Otherwise forward the request to index.php\n"
82+
"RewriteRule . index.php\n"
83+
"\n"
84+
"SetEnv APP_ENV dev\n"
85+
"\n"
86+
"# ...other settings...\n"
87+
msgstr ""
88+
89+
#. type: Plain text
90+
#: en/configuring-webservers/apache.md
91+
msgid ""
92+
"In the above, note the usage of `SetEnv`. Since the Yii3 application "
93+
"template is using environment variables, this is a possible place to set "
94+
"them. In production environment remember to set `APP_ENV` to `prod`."
95+
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: 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) 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 ""
28+
"When you use [IIS](https://www.iis.net/), host the application in a virtual "
29+
"host (Website) where the document root points to the `path/to/app/public` "
30+
"folder and configure the website to run PHP. In that `public` folder, place "
31+
"a file named `web.config` at `path/to/app/public/web.config`. Use the "
32+
"following content:"
33+
msgstr ""
34+
35+
#. type: Fenced code block (xml)
36+
#: en/configuring-webservers/iis.md
37+
#, no-wrap
38+
msgid ""
39+
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
40+
"<configuration>\n"
41+
" <system.webServer>\n"
42+
" <directoryBrowse enabled=\"false\" />\n"
43+
" <rewrite>\n"
44+
" <rules>\n"
45+
" <rule name=\"Hide Yii Index\" stopProcessing=\"true\">\n"
46+
" <match url=\".\" ignoreCase=\"false\" />\n"
47+
" <conditions>\n"
48+
" <add input=\"{REQUEST_FILENAME}\" matchType=\"IsFile\" \n"
49+
" ignoreCase=\"false\" negate=\"true\" />\n"
50+
" <add input=\"{REQUEST_FILENAME}\" matchType=\"IsDirectory\" \n"
51+
" ignoreCase=\"false\" negate=\"true\" />\n"
52+
" </conditions>\n"
53+
" <action type=\"Rewrite\" url=\"index.php\" appendQueryString=\"true\" />\n"
54+
" </rule> \n"
55+
" </rules>\n"
56+
" </rewrite>\n"
57+
" </system.webServer>\n"
58+
"</configuration>\n"
59+
msgstr ""
60+
61+
#. type: Plain text
62+
#: en/configuring-webservers/iis.md
63+
msgid ""
64+
"Also, the following list of Microsoft's official resources could be useful "
65+
"to configure PHP on IIS:"
66+
msgstr ""
67+
68+
#. type: Bullet: '1. '
69+
#: en/configuring-webservers/iis.md
70+
msgid ""
71+
"[How to set up your first IIS website](https://support.microsoft.com/en-us/"
72+
"help/323972/how-to-set-up-your-first-iis-web-site)"
73+
msgstr ""
74+
75+
#. type: Bullet: '2. '
76+
#: en/configuring-webservers/iis.md
77+
msgid ""
78+
"[Configure a PHP Website on IIS](https://docs.microsoft.com/en-us/iis/"
79+
"application-frameworks/scenario-build-a-php-website-on-iis/configure-a-php-"
80+
"website-on-iis)"
81+
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)