Skip to content

Commit 271e2bf

Browse files
committed
Update localized resources
Update resources from Crowdin. Signed-off-by: zapbot <[email protected]>
1 parent 26fc34a commit 271e2bf

File tree

260 files changed

+1327
-183
lines changed

Some content is hidden

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

260 files changed

+1327
-183
lines changed

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ <H2><a name="file-paths">File Paths</a></H2>
6868
Relative paths are recommended for portability.
6969

7070
<H2><a name="jobs">Jobs</a></H2>
71-
The jobs can be enabled/disabled through the GUI and the automation plan, with the <code>enabled</code> flag. Jobs are enabled by default.
7271
<p>
7372
The following automation jobs are supported by this add-on:
7473
<ul>
@@ -81,6 +80,15 @@ <H2><a name="jobs">Jobs</a></H2>
8180
<li><a href="job-exitstatus.html">exitStatus</a> - sets ZAP's exit code based on scan results</li>
8281
</ul>
8382

83+
<H3><a name="gen-options">General Job Options</a></H3>
84+
85+
The following options can be applied to all jobs, via the automation plan or the <a href="gui.html">GUI</a>:
86+
87+
<ul>
88+
<li><code>enabled</code> - only jobs that are enabled will run.
89+
<li><code>alwaysRun</code> - enabled jobs with this option will run even if the plan exits early.
90+
</ul>
91+
8492
<H3>Importance of Job Order</H3>
8593
The order of jobs is relevant and important. For example:
8694
<ul>

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ <H1>Automation Framework - Environment</H1>
5858
exclude: # List of tech to exclude, as per https://www.zaproxy.org/techtags/ (just use last names)
5959
include: # List of tech to include, should only be used when targeting specific techs, the exclude takes precedence when configuring the context.
6060
structure:
61-
structuralParameters: # List of names of structural parameters.
61+
structuralParameters: # List of names of structural parameters
62+
dataDrivenNodes: # List of data driven nodes
63+
- name: # String, name of the data driven node
64+
regex: # String, regex of the data driven node, must contain 2 or 3 regex groups
6265
users: # List of one or more users available to use for authentication
6366
- name: # String, the name to be used by the jobs
6467
credentials: # List of user credentials - may include any required for scripts

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@ <H3>Plan sub-tab</H3>
3333

3434
A graphical representation of the plan which also shows the state of the plan when it is run.<br>
3535
You can edit any of the elements of the plan by double clicking on them.
36+
<p>
37+
You can also change the following general job options via the plan table:
38+
39+
<ul>
40+
<li>Enabled - only jobs that are enabled will run.
41+
<li>Always Run - enabled jobs with this option will run even if the plan exits early.
42+
</ul>
3643

3744
<H3>Output sub-tab</H3>
3845

addOns/automation/src/main/javahelp/org/zaproxy/addon/automation/resources/help_ar_SA/contents/job-ascan.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ <H2>YAML</H2>
4242
name: # String: The name of the rule for documentation purposes - this is not required or actually used
4343
strength: # String: The Attack Strength for this rule, one of Low, Medium, High, Insane, default: Medium
4444
threshold: # String: The Alert Threshold for this rule, one of Off, Low, Medium, High, default: Medium
45+
enabled: # Bool: If set to false the job will not be run, default: true
46+
alwaysRun: # Bool: If set and the job is enabled then it will run even if the plan exits early, default: false
4547
</pre>
4648

4749
<strong>Note</strong>: Unless the <code>defaultThreshold</code> of the <code>policyDefinition</code> is <code>OFF</code> all rules will be enabled to start with.

addOns/automation/src/main/javahelp/org/zaproxy/addon/automation/resources/help_ar_SA/contents/job-ascanconfig.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,13 @@ <H2>YAML</H2>
4444
enabled: # Bool: If enabled. Default: false
4545
encodeCookieValues: # Bool: If cookie values should be encoded. Default: false
4646
scripts: # Bool: If Input Vector scripts should be used. Default: true
47+
excludePaths: # An optional list of regexes to exclude
48+
enabled: # Bool: If set to false the job will not be run, default: true
49+
alwaysRun: # Bool: If set and the job is enabled then it will run even if the plan exits early, default: false
4750
</pre>
4851

52+
Note that the 'excludePaths' will overwrite any existing session "Exclude from Scanner" paths.
53+
4954
</BODY>
5055
</HTML>
5156

addOns/automation/src/main/javahelp/org/zaproxy/addon/automation/resources/help_ar_SA/contents/job-ascanpolicy.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ <H2>YAML</H2>
2525
name: # Comment: The name of the rule for documentation purposes - this is not required or actually used
2626
strength: # String: The Attack Strength for this rule, one of Low, Medium, High, Insane, default: Medium
2727
threshold: # String: The Alert Threshold for this rule, one of Off, Low, Medium, High, default: Medium
28+
enabled: # Bool: If set to false the job will not be run, default: true
29+
alwaysRun: # Bool: If set and the job is enabled then it will run even if the plan exits early, default: false
2830
</pre>
2931

3032
</BODY>

addOns/automation/src/main/javahelp/org/zaproxy/addon/automation/resources/help_ar_SA/contents/job-delay.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ <H2>YAML</H2>
3030
parameters:
3131
time: # String: The time to wait, format any of ['hh:mm:ss', 'mm:ss', 'ss'], default: 0
3232
fileName: # String: Name of a file which will cause the job to end early if created, default: empty
33+
enabled: # Bool: If set to false the job will not be run, default: true
34+
alwaysRun: # Bool: If set and the job is enabled then it will run even if the plan exits early, default: false
3335
</pre>
3436

3537
</BODY>

addOns/automation/src/main/javahelp/org/zaproxy/addon/automation/resources/help_ar_SA/contents/job-exitstatus.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ <H2>YAML</H2>
3131
okExitValue: # Integer: Exit value if all ok, default 0
3232
errorExitValue: # Integer: Exit value if there are errors, default 1
3333
warnExitValue: # Integer: Exit value if there are warnings, default 2
34+
enabled: # Bool: If set to false the job will not be run, default: true
35+
alwaysRun: # Bool: If set and the job is enabled then it will run even if the plan exits early, default: false
3436
</pre>
3537

3638
</BODY>

addOns/automation/src/main/javahelp/org/zaproxy/addon/automation/resources/help_ar_SA/contents/job-requestor.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ <H2>YAML</H2>
2828
- "header1:value1"
2929
data: # String: Optional data to send in the request body, supports vars
3030
responseCode: # Int: An optional, expected response code against which the actual response code will be matched
31+
enabled: # Bool: If set to false the job will not be run, default: true
32+
alwaysRun: # Bool: If set and the job is enabled then it will run even if the plan exits early, default: false
3133
</pre>
3234

3335
</BODY>

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ <H2><a name="file-paths">File Paths</a></H2>
6868
Relative paths are recommended for portability.
6969

7070
<H2><a name="jobs">Jobs</a></H2>
71-
The jobs can be enabled/disabled through the GUI and the automation plan, with the <code>enabled</code> flag. Jobs are enabled by default.
7271
<p>
7372
The following automation jobs are supported by this add-on:
7473
<ul>
@@ -81,6 +80,15 @@ <H2><a name="jobs">Jobs</a></H2>
8180
<li><a href="job-exitstatus.html">exitStatus</a> - sets ZAP's exit code based on scan results</li>
8281
</ul>
8382

83+
<H3><a name="gen-options">General Job Options</a></H3>
84+
85+
The following options can be applied to all jobs, via the automation plan or the <a href="gui.html">GUI</a>:
86+
87+
<ul>
88+
<li><code>enabled</code> - only jobs that are enabled will run.
89+
<li><code>alwaysRun</code> - enabled jobs with this option will run even if the plan exits early.
90+
</ul>
91+
8492
<H3>Importance of Job Order</H3>
8593
The order of jobs is relevant and important. For example:
8694
<ul>

0 commit comments

Comments
 (0)