Skip to content

Commit 5e0890a

Browse files
authored
Merge pull request #6867 from zapbot/crowdin-update
Update localized resources
2 parents 9807d18 + 5fec229 commit 5e0890a

File tree

193 files changed

+1433
-618
lines changed

Some content is hidden

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

193 files changed

+1433
-618
lines changed

addOns/automation/src/main/javahelp/org/zaproxy/addon/automation/resources/help_ar_SA/contents/environment.html

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <H1>Automation Framework - Environment</H1>
5151
value: # The header value
5252
sessionManagement:
5353
method: # String, one of 'cookie', 'http', 'script'
54-
parameters: # List of 0 or more parameters - may include any required for scripts
54+
parameters: # List of parameters - may include any required for scripts
5555
script: # String, path to script, only for 'script' session management
5656
scriptEngine: # String, the name of the script engine to use, only for 'script' session management
5757
technology:
@@ -72,9 +72,10 @@ <H1>Automation Framework - Environment</H1>
7272
period: # Int, the period. Default: 30
7373
digits: # Int, the number of digits. Default: 6
7474
algorithm: # String, the algorithm. Default: SHA1
75-
vars: # List of 0 or more custom variables to be used throughout the config file
75+
vars: # List of custom variables to be used throughout the config file
7676
myVarOne: CustomConfigVarOne # Can be used as ${myVarOne} anywhere throughout the config
7777
myVarTwo: ${myVarOne}.VarTwo # Can refer other vars
78+
configs: # List of generic config parameters, as per the ZAP "-config" cmd line option
7879
parameters:
7980
failOnError: true # If set exit on an error
8081
failOnWarning: false # If set exit on a warning
@@ -93,7 +94,30 @@ <h3>Variables</h3>
9394
Variables can be defined in the 'vars' section.
9495
They can be hardcoded, refer to other variables or refer to system environment variables in the same way as above, e.g. '${envvar}'.
9596
In case there are two variables with the same name, the value of the system variable would be preferred.
96-
97+
98+
<h3>Configs</h3>
99+
100+
The 'configs' section can be used to define any value that can be set in the ZAP configuration file, which works in the same way as the ZAP '-config' command line option.
101+
<p>
102+
The advantages of using this section instead of the command line are:
103+
<ol>
104+
<li>The configuration will be self contained in the plan
105+
<li>The ZAP team will monitor the keys used in this way (when telemetry is enabled) and prioritise adding full support for the most frequently used ones
106+
<li>Warnings will be raised when a key being used has a better solution available
107+
</ol>
108+
109+
No validation is performed on the keys and values, so you are responsible for checking that your configuration
110+
is correct. Invalid keys will be silently ignored.
111+
<p>
112+
The recommended way to determine the keys is documented in the FAQ:
113+
<a href="https://www.zaproxy.org/faq/how-do-you-find-out-what-key-to-use-to-set-a-config-value-on-the-command-line/">How do you find out what key to use to set a config value on the command line?</a>
114+
<p>
115+
A working example, which sets the number of passive scan threads, is:
116+
<pre>
117+
configs:
118+
pscans.threads: 8
119+
</pre>
120+
97121
<h3>Format Changes</h3>
98122

99123
Originally the 'engine' and 'scriptEngine' fields were directly under the 'sessionManagement' element - this is still supported when reading plans but they

addOns/automation/src/main/javahelp/org/zaproxy/addon/automation/resources/help_az_AZ/contents/environment.html

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <H1>Automation Framework - Environment</H1>
5151
value: # The header value
5252
sessionManagement:
5353
method: # String, one of 'cookie', 'http', 'script'
54-
parameters: # List of 0 or more parameters - may include any required for scripts
54+
parameters: # List of parameters - may include any required for scripts
5555
script: # String, path to script, only for 'script' session management
5656
scriptEngine: # String, the name of the script engine to use, only for 'script' session management
5757
technology:
@@ -72,9 +72,10 @@ <H1>Automation Framework - Environment</H1>
7272
period: # Int, the period. Default: 30
7373
digits: # Int, the number of digits. Default: 6
7474
algorithm: # String, the algorithm. Default: SHA1
75-
vars: # List of 0 or more custom variables to be used throughout the config file
75+
vars: # List of custom variables to be used throughout the config file
7676
myVarOne: CustomConfigVarOne # Can be used as ${myVarOne} anywhere throughout the config
7777
myVarTwo: ${myVarOne}.VarTwo # Can refer other vars
78+
configs: # List of generic config parameters, as per the ZAP "-config" cmd line option
7879
parameters:
7980
failOnError: true # If set exit on an error
8081
failOnWarning: false # If set exit on a warning
@@ -93,7 +94,30 @@ <h3>Variables</h3>
9394
Variables can be defined in the 'vars' section.
9495
They can be hardcoded, refer to other variables or refer to system environment variables in the same way as above, e.g. '${envvar}'.
9596
In case there are two variables with the same name, the value of the system variable would be preferred.
96-
97+
98+
<h3>Configs</h3>
99+
100+
The 'configs' section can be used to define any value that can be set in the ZAP configuration file, which works in the same way as the ZAP '-config' command line option.
101+
<p>
102+
The advantages of using this section instead of the command line are:
103+
<ol>
104+
<li>The configuration will be self contained in the plan
105+
<li>The ZAP team will monitor the keys used in this way (when telemetry is enabled) and prioritise adding full support for the most frequently used ones
106+
<li>Warnings will be raised when a key being used has a better solution available
107+
</ol>
108+
109+
No validation is performed on the keys and values, so you are responsible for checking that your configuration
110+
is correct. Invalid keys will be silently ignored.
111+
<p>
112+
The recommended way to determine the keys is documented in the FAQ:
113+
<a href="https://www.zaproxy.org/faq/how-do-you-find-out-what-key-to-use-to-set-a-config-value-on-the-command-line/">How do you find out what key to use to set a config value on the command line?</a>
114+
<p>
115+
A working example, which sets the number of passive scan threads, is:
116+
<pre>
117+
configs:
118+
pscans.threads: 8
119+
</pre>
120+
97121
<h3>Format Changes</h3>
98122

99123
Originally the 'engine' and 'scriptEngine' fields were directly under the 'sessionManagement' element - this is still supported when reading plans but they

addOns/automation/src/main/javahelp/org/zaproxy/addon/automation/resources/help_bs_BA/contents/environment.html

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <H1>Automation Framework - Environment</H1>
5151
value: # The header value
5252
sessionManagement:
5353
method: # String, one of 'cookie', 'http', 'script'
54-
parameters: # List of 0 or more parameters - may include any required for scripts
54+
parameters: # List of parameters - may include any required for scripts
5555
script: # String, path to script, only for 'script' session management
5656
scriptEngine: # String, the name of the script engine to use, only for 'script' session management
5757
technology:
@@ -72,9 +72,10 @@ <H1>Automation Framework - Environment</H1>
7272
period: # Int, the period. Default: 30
7373
digits: # Int, the number of digits. Default: 6
7474
algorithm: # String, the algorithm. Default: SHA1
75-
vars: # List of 0 or more custom variables to be used throughout the config file
75+
vars: # List of custom variables to be used throughout the config file
7676
myVarOne: CustomConfigVarOne # Can be used as ${myVarOne} anywhere throughout the config
7777
myVarTwo: ${myVarOne}.VarTwo # Can refer other vars
78+
configs: # List of generic config parameters, as per the ZAP "-config" cmd line option
7879
parameters:
7980
failOnError: true # If set exit on an error
8081
failOnWarning: false # If set exit on a warning
@@ -93,7 +94,30 @@ <h3>Variables</h3>
9394
Variables can be defined in the 'vars' section.
9495
They can be hardcoded, refer to other variables or refer to system environment variables in the same way as above, e.g. '${envvar}'.
9596
In case there are two variables with the same name, the value of the system variable would be preferred.
96-
97+
98+
<h3>Configs</h3>
99+
100+
The 'configs' section can be used to define any value that can be set in the ZAP configuration file, which works in the same way as the ZAP '-config' command line option.
101+
<p>
102+
The advantages of using this section instead of the command line are:
103+
<ol>
104+
<li>The configuration will be self contained in the plan
105+
<li>The ZAP team will monitor the keys used in this way (when telemetry is enabled) and prioritise adding full support for the most frequently used ones
106+
<li>Warnings will be raised when a key being used has a better solution available
107+
</ol>
108+
109+
No validation is performed on the keys and values, so you are responsible for checking that your configuration
110+
is correct. Invalid keys will be silently ignored.
111+
<p>
112+
The recommended way to determine the keys is documented in the FAQ:
113+
<a href="https://www.zaproxy.org/faq/how-do-you-find-out-what-key-to-use-to-set-a-config-value-on-the-command-line/">How do you find out what key to use to set a config value on the command line?</a>
114+
<p>
115+
A working example, which sets the number of passive scan threads, is:
116+
<pre>
117+
configs:
118+
pscans.threads: 8
119+
</pre>
120+
97121
<h3>Format Changes</h3>
98122

99123
Originally the 'engine' and 'scriptEngine' fields were directly under the 'sessionManagement' element - this is still supported when reading plans but they

addOns/automation/src/main/javahelp/org/zaproxy/addon/automation/resources/help_da_DK/contents/environment.html

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <H1>Automation Framework - Environment</H1>
5151
value: # The header value
5252
sessionManagement:
5353
method: # String, one of 'cookie', 'http', 'script'
54-
parameters: # List of 0 or more parameters - may include any required for scripts
54+
parameters: # List of parameters - may include any required for scripts
5555
script: # String, path to script, only for 'script' session management
5656
scriptEngine: # String, the name of the script engine to use, only for 'script' session management
5757
technology:
@@ -72,9 +72,10 @@ <H1>Automation Framework - Environment</H1>
7272
period: # Int, the period. Default: 30
7373
digits: # Int, the number of digits. Default: 6
7474
algorithm: # String, the algorithm. Default: SHA1
75-
vars: # List of 0 or more custom variables to be used throughout the config file
75+
vars: # List of custom variables to be used throughout the config file
7676
myVarOne: CustomConfigVarOne # Can be used as ${myVarOne} anywhere throughout the config
7777
myVarTwo: ${myVarOne}.VarTwo # Can refer other vars
78+
configs: # List of generic config parameters, as per the ZAP "-config" cmd line option
7879
parameters:
7980
failOnError: true # If set exit on an error
8081
failOnWarning: false # If set exit on a warning
@@ -93,7 +94,30 @@ <h3>Variables</h3>
9394
Variables can be defined in the 'vars' section.
9495
They can be hardcoded, refer to other variables or refer to system environment variables in the same way as above, e.g. '${envvar}'.
9596
In case there are two variables with the same name, the value of the system variable would be preferred.
96-
97+
98+
<h3>Configs</h3>
99+
100+
The 'configs' section can be used to define any value that can be set in the ZAP configuration file, which works in the same way as the ZAP '-config' command line option.
101+
<p>
102+
The advantages of using this section instead of the command line are:
103+
<ol>
104+
<li>The configuration will be self contained in the plan
105+
<li>The ZAP team will monitor the keys used in this way (when telemetry is enabled) and prioritise adding full support for the most frequently used ones
106+
<li>Warnings will be raised when a key being used has a better solution available
107+
</ol>
108+
109+
No validation is performed on the keys and values, so you are responsible for checking that your configuration
110+
is correct. Invalid keys will be silently ignored.
111+
<p>
112+
The recommended way to determine the keys is documented in the FAQ:
113+
<a href="https://www.zaproxy.org/faq/how-do-you-find-out-what-key-to-use-to-set-a-config-value-on-the-command-line/">How do you find out what key to use to set a config value on the command line?</a>
114+
<p>
115+
A working example, which sets the number of passive scan threads, is:
116+
<pre>
117+
configs:
118+
pscans.threads: 8
119+
</pre>
120+
97121
<h3>Format Changes</h3>
98122

99123
Originally the 'engine' and 'scriptEngine' fields were directly under the 'sessionManagement' element - this is still supported when reading plans but they

addOns/automation/src/main/javahelp/org/zaproxy/addon/automation/resources/help_de_DE/contents/environment.html

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <H1>Automation Framework - Environment</H1>
5151
value: # The header value
5252
sessionManagement:
5353
method: # String, one of 'cookie', 'http', 'script'
54-
parameters: # List of 0 or more parameters - may include any required for scripts
54+
parameters: # List of parameters - may include any required for scripts
5555
script: # String, path to script, only for 'script' session management
5656
scriptEngine: # String, the name of the script engine to use, only for 'script' session management
5757
technology:
@@ -72,9 +72,10 @@ <H1>Automation Framework - Environment</H1>
7272
period: # Int, the period. Default: 30
7373
digits: # Int, the number of digits. Default: 6
7474
algorithm: # String, the algorithm. Default: SHA1
75-
vars: # List of 0 or more custom variables to be used throughout the config file
75+
vars: # List of custom variables to be used throughout the config file
7676
myVarOne: CustomConfigVarOne # Can be used as ${myVarOne} anywhere throughout the config
7777
myVarTwo: ${myVarOne}.VarTwo # Can refer other vars
78+
configs: # List of generic config parameters, as per the ZAP "-config" cmd line option
7879
parameters:
7980
failOnError: true # If set exit on an error
8081
failOnWarning: false # If set exit on a warning
@@ -93,7 +94,30 @@ <h3>Variables</h3>
9394
Variables can be defined in the 'vars' section.
9495
They can be hardcoded, refer to other variables or refer to system environment variables in the same way as above, e.g. '${envvar}'.
9596
In case there are two variables with the same name, the value of the system variable would be preferred.
96-
97+
98+
<h3>Configs</h3>
99+
100+
The 'configs' section can be used to define any value that can be set in the ZAP configuration file, which works in the same way as the ZAP '-config' command line option.
101+
<p>
102+
The advantages of using this section instead of the command line are:
103+
<ol>
104+
<li>The configuration will be self contained in the plan
105+
<li>The ZAP team will monitor the keys used in this way (when telemetry is enabled) and prioritise adding full support for the most frequently used ones
106+
<li>Warnings will be raised when a key being used has a better solution available
107+
</ol>
108+
109+
No validation is performed on the keys and values, so you are responsible for checking that your configuration
110+
is correct. Invalid keys will be silently ignored.
111+
<p>
112+
The recommended way to determine the keys is documented in the FAQ:
113+
<a href="https://www.zaproxy.org/faq/how-do-you-find-out-what-key-to-use-to-set-a-config-value-on-the-command-line/">How do you find out what key to use to set a config value on the command line?</a>
114+
<p>
115+
A working example, which sets the number of passive scan threads, is:
116+
<pre>
117+
configs:
118+
pscans.threads: 8
119+
</pre>
120+
97121
<h3>Format Changes</h3>
98122

99123
Originally the 'engine' and 'scriptEngine' fields were directly under the 'sessionManagement' element - this is still supported when reading plans but they

addOns/automation/src/main/javahelp/org/zaproxy/addon/automation/resources/help_el_GR/contents/environment.html

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <H1>Automation Framework - Environment</H1>
5151
value: # The header value
5252
sessionManagement:
5353
method: # String, one of 'cookie', 'http', 'script'
54-
parameters: # List of 0 or more parameters - may include any required for scripts
54+
parameters: # List of parameters - may include any required for scripts
5555
script: # String, path to script, only for 'script' session management
5656
scriptEngine: # String, the name of the script engine to use, only for 'script' session management
5757
technology:
@@ -72,9 +72,10 @@ <H1>Automation Framework - Environment</H1>
7272
period: # Int, the period. Default: 30
7373
digits: # Int, the number of digits. Default: 6
7474
algorithm: # String, the algorithm. Default: SHA1
75-
vars: # List of 0 or more custom variables to be used throughout the config file
75+
vars: # List of custom variables to be used throughout the config file
7676
myVarOne: CustomConfigVarOne # Can be used as ${myVarOne} anywhere throughout the config
7777
myVarTwo: ${myVarOne}.VarTwo # Can refer other vars
78+
configs: # List of generic config parameters, as per the ZAP "-config" cmd line option
7879
parameters:
7980
failOnError: true # If set exit on an error
8081
failOnWarning: false # If set exit on a warning
@@ -93,7 +94,30 @@ <h3>Variables</h3>
9394
Variables can be defined in the 'vars' section.
9495
They can be hardcoded, refer to other variables or refer to system environment variables in the same way as above, e.g. '${envvar}'.
9596
In case there are two variables with the same name, the value of the system variable would be preferred.
96-
97+
98+
<h3>Configs</h3>
99+
100+
The 'configs' section can be used to define any value that can be set in the ZAP configuration file, which works in the same way as the ZAP '-config' command line option.
101+
<p>
102+
The advantages of using this section instead of the command line are:
103+
<ol>
104+
<li>The configuration will be self contained in the plan
105+
<li>The ZAP team will monitor the keys used in this way (when telemetry is enabled) and prioritise adding full support for the most frequently used ones
106+
<li>Warnings will be raised when a key being used has a better solution available
107+
</ol>
108+
109+
No validation is performed on the keys and values, so you are responsible for checking that your configuration
110+
is correct. Invalid keys will be silently ignored.
111+
<p>
112+
The recommended way to determine the keys is documented in the FAQ:
113+
<a href="https://www.zaproxy.org/faq/how-do-you-find-out-what-key-to-use-to-set-a-config-value-on-the-command-line/">How do you find out what key to use to set a config value on the command line?</a>
114+
<p>
115+
A working example, which sets the number of passive scan threads, is:
116+
<pre>
117+
configs:
118+
pscans.threads: 8
119+
</pre>
120+
97121
<h3>Format Changes</h3>
98122

99123
Originally the 'engine' and 'scriptEngine' fields were directly under the 'sessionManagement' element - this is still supported when reading plans but they

0 commit comments

Comments
 (0)