Skip to content

Commit 8fd6f4e

Browse files
author
rntluca
committed
Init Italian translation
1 parent 740bb83 commit 8fd6f4e

195 files changed

Lines changed: 42484 additions & 2 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.
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# Italian 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: 2025-12-24 09:13+0000\n"
10+
"PO-Revision-Date: 2025-12-24 09:13+0000\n"
11+
"Last-Translator: Automatically generated\n"
12+
"Language-Team: none\n"
13+
"Language: it\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/cookbook/configuring-webservers/apache.md
21+
#, no-wrap
22+
msgid "Configuring web servers: Apache"
23+
msgstr ""
24+
25+
#. type: Plain text
26+
#: ../src/cookbook/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 (apache)
31+
#: ../src/cookbook/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+
#: ../src/cookbook/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 (apache)
63+
#: ../src/cookbook/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+
#: ../src/cookbook/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+
# Italian 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: 2025-12-24 20:05+0000\n"
10+
"PO-Revision-Date: 2025-12-24 20:05+0000\n"
11+
"Last-Translator: Automatically generated\n"
12+
"Language-Team: none\n"
13+
"Language: it\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/cookbook/configuring-webservers/general.md
21+
#, no-wrap
22+
msgid "Configuring web servers: General"
23+
msgstr ""
24+
25+
#. type: Plain text
26+
#: ../src/cookbook/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+
#: ../src/cookbook/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/security/trusted-request.md).\n"
37+
msgstr ""
38+
39+
#. type: Title ##
40+
#: ../src/cookbook/configuring-webservers/general.md
41+
#, no-wrap
42+
msgid "Specific server configurations"
43+
msgstr ""
44+
45+
#. type: Bullet: '- '
46+
#: ../src/cookbook/configuring-webservers/general.md
47+
#, fuzzy
48+
#| msgid "[Logging](runtime/logging.md)"
49+
msgid "[Nginx](nginx.md)"
50+
msgstr "[Logging](runtime/logging.md)"
51+
52+
#. type: Bullet: '- '
53+
#: ../src/cookbook/configuring-webservers/general.md
54+
msgid "[Apache](apache.md)"
55+
msgstr ""
56+
57+
#. type: Bullet: '- '
58+
#: ../src/cookbook/configuring-webservers/general.md
59+
msgid "[Lighttpd](lighttpd.md)"
60+
msgstr ""
61+
62+
#. type: Bullet: '- '
63+
#: ../src/cookbook/configuring-webservers/general.md
64+
msgid "[Nginx Unit](nginx-unit.md)"
65+
msgstr ""
66+
67+
#. type: Bullet: '- '
68+
#: ../src/cookbook/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+
# Italian 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: 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: it\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+
# Italian 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: 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: it\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 ""
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
# Italian 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: 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: it\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/nginx-unit.md
21+
#, no-wrap
22+
msgid "Configuring web servers: NGINX Unit"
23+
msgstr ""
24+
25+
#. type: Plain text
26+
#: en/configuring-webservers/nginx-unit.md
27+
msgid "Run Yii-based apps using [NGINX Unit](https://unit.nginx.org/) with a PHP language module. Here is a sample configuration."
28+
msgstr ""
29+
30+
#. type: Fenced code block (json)
31+
#: en/configuring-webservers/nginx-unit.md
32+
#, no-wrap
33+
msgid ""
34+
"{\n"
35+
" \"listeners\": {\n"
36+
" \"*:80\": {\n"
37+
" \"pass\": \"routes/yii\"\n"
38+
" }\n"
39+
" },\n"
40+
"\n"
41+
" \"routes\": {\n"
42+
" \"yii\": [\n"
43+
" {\n"
44+
" \"match\": {\n"
45+
" \"uri\": [\n"
46+
" \"!/assets/*\",\n"
47+
" \"*.php\",\n"
48+
" \"*.php/*\"\n"
49+
" ]\n"
50+
" },\n"
51+
"\n"
52+
" \"action\": {\n"
53+
" \"pass\": \"applications/yii/direct\"\n"
54+
" }\n"
55+
" },\n"
56+
" {\n"
57+
" \"action\": {\n"
58+
" \"share\": \"/path/to/app/public/\",\n"
59+
" \"fallback\": {\n"
60+
" \"pass\": \"applications/yii/index\"\n"
61+
" }\n"
62+
" }\n"
63+
" }\n"
64+
" ]\n"
65+
" },\n"
66+
"\n"
67+
" \"applications\": {\n"
68+
" \"yii\": {\n"
69+
" \"type\": \"php\",\n"
70+
" \"user\": \"www-data\",\n"
71+
" \"environment\": {\n"
72+
" \"APP_ENV\": \"dev\"\n"
73+
" },\n"
74+
" \"targets\": {\n"
75+
" \"direct\": {\n"
76+
" \"root\": \"/path/to/app/public/\"\n"
77+
" },\n"
78+
"\n"
79+
" \"index\": {\n"
80+
" \"root\": \"/path/to/app/public/\",\n"
81+
" \"script\": \"index.php\"\n"
82+
" }\n"
83+
" }\n"
84+
" }\n"
85+
" }\n"
86+
"}\n"
87+
msgstr ""
88+
89+
#. type: Plain text
90+
#: en/configuring-webservers/nginx-unit.md
91+
msgid "You can also [set up](https://unit.nginx.org/configuration/#php) your PHP environment or supply a custom `php.ini` in the same configuration."
92+
msgstr ""
93+
94+
#. type: Plain text
95+
#: en/configuring-webservers/nginx-unit.md
96+
msgid "In the above, note the usage of `environment`. 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`."
97+
msgstr ""

0 commit comments

Comments
 (0)